* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

html, body {
    height: 100%;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    height: 100vh;
    padding: 2rem;
    padding-top: 2rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: stretch;
    height: 100%;
    flex: 1;
    animation: fadeIn 1s ease-in;
    min-width: 0;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: left;
    height: 100%;
    justify-content: space-between;
    min-width: 0;
    overflow-wrap: break-word;
}

.logo-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.logo-icon {
    width: auto;
    height: 90px;
    display: block;
}

.logo-text {
    color: #FBBF24;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    justify-content: space-between;
}

.main-content h1 {
    color: #ffffff;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
}

.main-content .description {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    border: 1px solid #FBBF24;
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.contact-button:hover {
    background-color: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
}

.contact-button:focus,
.contact-button:active {
    outline: none;
    border: 1px solid #FBBF24;
}

/* Social Section */
.social-section {
    margin-top: auto;
    flex-shrink: 0;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-label {
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

.social-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBBF24;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.social-link svg {
    stroke: #FBBF24;
    transition: stroke 0.3s ease;
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-link:focus,
.social-link:active {
    outline: none;
}

/* Right Column - Visual Elements */
.right-column {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.shape {
    position: absolute;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    border-radius: 0;
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 50%, #F59E0B 100%);
    top: 5%;
    right: 5%;
    animation-delay: 0s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, #FBBF24 0%, #FCD34D 100%);
    top: 25%;
    right: 25%;
    animation-delay: 1s;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    transform: rotate(25deg);
}

.shape-3 {
    width: 220px;
    height: 220px;
    background: linear-gradient(45deg, #F59E0B 0%, #FBBF24 50%, #FCD34D 100%);
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-4 {
    width: 160px;
    height: 160px;
    background: linear-gradient(225deg, #FBBF24 0%, #FCD34D 50%, #F59E0B 100%);
    top: 45%;
    right: 0%;
    animation-delay: 1.5s;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0.75rem;
        padding-top: 0.5rem;
        height: 100vh;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .logo-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        flex-shrink: 0;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }

    .left-column {
        order: 1;
        height: auto;
        gap: 1.5rem;
        min-height: 0;
        width: 100%;
    }

    .main-content {
        gap: 1.25rem;
    }

    .right-column {
        order: 2;
        display: none;
    }

    .visual-container {
        display: none;
    }

    .main-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .main-content .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .logo-icon {
        height: 50px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-container {
        gap: 1rem;
    }

    .contact-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }

    .social-section {
        margin-top: 1rem;
    }

    .social-header {
        margin-bottom: 1rem;
    }

    .shape {
        width: 100px !important;
        height: 100px !important;
    }

    .shape-2 {
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
        padding-top: 0.5rem;
        height: 100vh;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .logo-section {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        flex-shrink: 0;
    }

    .container {
        gap: 0.75rem;
        height: auto;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }

    .left-column {
        height: auto;
        gap: 1.25rem;
        min-height: 0;
        width: 100%;
    }

    .main-content {
        gap: 1rem;
    }

    .main-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .main-content .description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .contact-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.7rem;
    }

    .logo-icon {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .logo-container {
        gap: 0.75rem;
    }

    .social-section {
        margin-top: 0.75rem;
    }

    .social-header {
        margin-bottom: 0.75rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .right-column {
        display: none;
    }

    .visual-container {
        display: none;
    }

    .shape {
        width: 70px !important;
        height: 70px !important;
    }

    .shape-2 {
        height: 120px !important;
    }
}
