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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5e6d3 0%, #ede0d1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
}

.background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.logo {
    position: absolute;
    top: 60px;
    left: 60px;
    max-width: 280px;
    width: auto;
    height: auto;
    z-index: 10;
}

.right-section {
    position: absolute;
    top: 60px;
    right: 60px;
    max-width: 480px;
    z-index: 10;
}

h2 {
    font-size: 38px;
    color: #004a98;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 600;
}

.highlight {
    color: #FF7200;
    font-weight: 700;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.cta-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    object-fit: contain;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 0;
}

.cta-link {
    font-size: 24px;
    color: #004a98;
    font-weight: 700;
    margin: 0;
    font-style: italic;
    text-decoration: none;
}

.cta-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .logo {
        max-width: 220px;
    }

    .right-section {
        max-width: 400px;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-box {
        padding: 20px;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
    }

    .cta-link {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        max-height: none;
        height: auto;
        min-height: 100vh;
    }

    .background {
        position: relative;
    }

    .logo {
        position: static;
        padding: 40px 30px 0;
        max-width: 180px;
    }

    .right-section {
        position: static;
        padding: 30px;
        max-width: 100%;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .cta-box {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 30px 20px 0;
        max-width: 140px;
    }

    .right-section {
        padding: 20px;
    }

    h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-link {
        font-size: 16px;
    }
}
