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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #eaf7fd;
}

/* Navigation */
.navbar {
    background-color: #132439;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #60a5fa;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Main Content */
.main-content {
    padding: 8rem 1rem 3rem;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Agreement Box */
.agreement-box {
    background: white;
    border-radius: 12px;
    padding: 5rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 3px solid #1e3a5f;
    text-align: center;
}

.agreement-icon {
    margin-bottom: 1rem;
}

.agreement-icon img {
    display: block;
    margin: 0 auto;
}

.brand-name {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.agreement-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.agreement-list {
    text-align: left;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.agreement-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.checkmark {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.agreement-item span {
    color: #555;
    line-height: 1.5;
}

.link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

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

.agree-btn {
    background-color: #22c55e;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.1s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
        transform: scale(1.03);
    }
}

.agree-btn:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.agree-btn:active {
    transform: translateY(0);
}

/* Info Section */
.info-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 1.75rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-text {
    color: #555;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #1e3a5f;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e3a5f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem 0;
        width: 100%;
        display: block;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .main-content {
        padding: 6rem 1rem 2rem;
    }

    .agreement-box {
        padding: 3rem 1.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .agreement-subtitle {
        font-size: 1rem;
    }

    .agreement-item {
        font-size: 0.95rem;
    }

    .info-section {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.75rem;
    }

    .agreement-box {
        padding: 1.5rem 1rem;
    }

    .agree-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .info-section {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}
