@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #FFFFFF;
    color: #222;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #FF6F00;
    font-weight: 700;
}

.ad-banner {
    background: linear-gradient(90deg, #FF6F00 0%, #0088FF 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

header {
    background: linear-gradient(90deg, #FF6F00 0%, #0088FF 100%);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    color: #FF6F00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00E676;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    background: linear-gradient(135deg, #FF6F00 0%, #0088FF 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    color: #FFFFFF;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #FFFFFF;
    border: 2px solid #F5F5F5;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    border-color: #0088FF;
    box-shadow: 0 6px 20px rgba(0, 136, 255, 0.15);
    transform: translateY(-4px);
}

.card h3 {
    color: #0088FF;
    margin-bottom: 15px;
    font-size: 20px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #F5F5F5;
}

.card ul li:last-child {
    border-bottom: none;
}

.image-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.info-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #E3F2FD 100%);
    border-left: 4px solid #FF6F00;
    border-radius: 8px;
    padding: 25px;
}

.info-box h3 {
    color: #FF6F00;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.info-box ul li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #00E676;
}

.alert-box {
    background: #FFF8E1;
    border: 2px solid #FFB300;
    border-radius: 8px;
    padding: 25px;
}

.alert-box ul {
    list-style: none;
    padding-left: 0;
}

.alert-box ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #856404;
}

.alert-box ul li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #FF6F00;
}

.step-list {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    border: 2px solid #F5F5F5;
}

.step-list li {
    padding: 15px 0;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #F5F5F5;
}

.step-list li:last-child {
    border-bottom: none;
}

.contact-form {
    background: linear-gradient(135deg, #FFF3E0 0%, #E3F2FD 100%);
    border-radius: 8px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    color: #FF6F00;
    margin-bottom: 15px;
}

.contact-info {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border: 2px solid #0088FF;
}

.contact-info h3 {
    color: #0088FF;
    margin-bottom: 10px;
}

.contact-info p {
    color: #666;
    margin: 5px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0088FF;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    color: #666;
    font-size: 14px;
}

.checkbox-group label a {
    color: #0088FF;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #FF6F00;
    color: #FFFFFF;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background-color: #E65100;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    color: #0088FF;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

footer {
    background: #0088FF;
    color: #FFFFFF;
    padding: 50px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 14px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    margin: 8px 0;
}

.footer-contact a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #00E676;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00E676;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

@media (max-width: 768px) {
    .two-column,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
