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


/* Hero Section */
.hero-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #224488 0%, #2575fc 100%);
    color: white;
    border-radius: 10px;
    text-align: center;
}

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .hero p {
        font-size: 1.5rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }

.tagline {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffdd40;
}

.cta-button {
    display: inline-block;
    background-color: #ffdd40;
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .cta-button:hover {
        background-color: #ffd324;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 15px;
    }

    .section-title p {
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: #f5f7fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 50px;
    color: #224488;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Security Section */
.security {
    padding: 100px 0;
    background-color: #f5f7fa;
    margin-bottom: 20px;
}

.security-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.security-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

    .security-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #333;
    }

    .security-text p {
        color: #666;
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

.security-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .security-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #224488 0%, #2575fc 100%);
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 40px;
    }


/* Footer */
footer-contact {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-contact-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2575fc;
}

.footer-contact-column ul {
    list-style: none;
}

    .footer-contact-column ul li {
        margin-bottom: 10px;
    }

        .footer-contact-column ul li a {
            color: #6965d4;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-contact-column ul li a:hover {
                color: #ffdd40;
            }


/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        justify-content: center;
    }

        nav ul li {
            margin: 0 10px;
        }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .security-content {
        flex-direction: column;
    }

    .security-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
}
