/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

body {
    margin: 0;
    width: 100%;
    background-color: #F8F5EE;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Font Definitions */
@font-face {
    font-family: "Instrument Sans";
    font-style: normal;
    font-weight: 400;
    src: local("Instrument Sans Regular"), url("fonts/instrument-sans-regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    font-style: normal;
    font-weight: 500;
    src: local("Instrument Sans Medium"), url("fonts/instrument-sans-medium.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    font-style: normal;
    font-weight: 600;
    src: local("Instrument Sans SemiBold"), url("fonts/instrument-sans-semibold.woff2") format("woff2");
    font-display: swap;
}

/* Layout */
#container {
    width: 100%;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #F8F5EE;
}

/* Header */
.header {
    width: 100%;
    padding: 16px 30px;
    background-color: #F8F5EE;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 58px;
    height: 47px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: block;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link img {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    width: 100%;
    padding: 100px 50px 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F5EE;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.hero-logo img {
    width: 600px;
    height: 138px;
}

/* Main Content Section */
.main-content {
    width: 100%;
    background: linear-gradient(180deg, rgba(120, 0, 141, 0) 0%, rgba(120, 0, 141, 0.3) 100%), #0026FF;
    padding: 136px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.text-content h1 {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    color: #F8F5EE;
    margin-bottom: 16px;
}

.text-content p {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.45;
    color: #F8F5EE;
    letter-spacing: -0.1px;
}

/* CTA Button */
.cta-button {
    background-color: #F8F5EE;
    color: #0026FF;
    border: none;
    border-radius: 34px;
    padding: 16px 32px;
    font-family: "Instrument Sans", sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 38, 255, 0.2);
}

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    width: 100%;
    background-color: #F8F5EE;
    padding: 40px;
}

.footer-content {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.copyright {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #0026FF;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .main-content {
        padding: 96px 32px;
    }
    
    .text-content h1 {
        font-size: 28px;
    }
    
    .copyright {
        font-size: 14px;
    }
}

@media (max-width: 800px) {
    .header {
        padding: 16px 20px;
    }
    
    .hero {
        padding: 80px 24px;
    }
    
    .hero-logo img {
        width: 350px;
        height: 85px;
    }
    
    .main-content {
        padding: 40px 24px;
    }
    
    .text-content h1 {
        font-size: 26px;
    }
    
    .text-content p {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px 15px;
    }
    
    .hero {
        padding: 60px 15px 120px;
    }
    
    .hero-logo img {
        width: 287px;
        height: 69px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .footer {
        padding: 30px 20px;
    }
}