/* 
* Color Palette:
* Deep Cobalt: #1A2B88 - background
* Icy Mint: #A8FFF1 - accents
* Smoky Coral: #FF6B6B - buttons and forms
* Graphite Gray: #2E2E2E - text
* Ice White: #F5F9FA - block backgrounds and cards
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #2E2E2E;
    line-height: 1.6;
    background-color: #F5F9FA;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #1A2B88;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF6B6B;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #FF6B6B;
    color: white;
}

.btn-primary:hover {
    background-color: #e45a5a;
    color: white;
}

.btn-secondary {
    background-color: #A8FFF1;
    color: #1A2B88;
}

.btn-secondary:hover {
    background-color: #8fe0d3;
}

/* Section Styles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #A8FFF1;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
.site-header {
    background-color: #1A2B88;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: white;
    font-weight: 500;
}

.main-nav ul li a:hover {
    color: #A8FFF1;
}

.main-nav .btn {
    margin-left: 15px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.hidden-checkbox {
    display: none;
}

/* Hero Section */
.hero {
    background-color: #1A2B88;
    color: white;
    padding: 180px 0 100px;
    background-image: url('./img/ojslXz.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 43, 136, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* About Section */
.about {
    background-color: #F5F9FA;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-content {
    flex: 1;
}

/* Benefits Section */
.benefits {
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background-color: #F5F9FA;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #A8FFF1;
    border-radius: 50%;
    color: #1A2B88;
}

/* Services Section */
.services {
    background-color: #F5F9FA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #1A2B88;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #F5F9FA;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: #1A2B88;
}

/* FAQ Section */
.faq {
    background-color: #F5F9FA;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: white;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    color: #1A2B88;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #A8FFF1;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #1A2B88;
    transition: all 0.3s ease;
}

.faq-answer {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 20px 20px;
    color: #2E2E2E;
    border-top: 1px solid rgba(26, 43, 136, 0.1);
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

/* Target the checkbox for FAQ functionality without JS */
.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question {
    background-color: rgba(168, 255, 241, 0.1);
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::before {
    background-color: #FF6B6B;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 1000px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

/* Contact Form Section */
.contact {
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #F5F9FA;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #A8FFF1;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1A2B88;
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 400px;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-link {
    margin-left: 15px;
    font-size: 0.9rem;
}

/* Footer Styles */
.site-footer {
    background-color: #1A2B88;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    margin-bottom: 0;
}

.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #A8FFF1;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
}

.footer-links a:hover {
    color: #A8FFF1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-flex {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle label {
        display: flex;
        flex-direction: column;
        width: 30px;
        cursor: pointer;
    }
    
    .mobile-menu-toggle label span {
        background-color: white;
        height: 3px;
        margin: 3px 0;
        transition: all 0.3s ease;
    }
    
    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #1A2B88;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .hidden-checkbox:checked ~ .mobile-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-menu ul li {
        margin: 15px 0;
    }
    
    .mobile-menu ul li a {
        color: white;
        display: block;
        padding: 5px 0;
    }
    
    .hidden-checkbox:checked ~ label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hidden-checkbox:checked ~ label span:nth-child(2) {
        opacity: 0;
    }
    
    .hidden-checkbox:checked ~ label span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        width: 95%;
    }
    
    .form-container {
        padding: 20px;
    }
}

/* Policy Pages Common Styles */
.policy {
    padding: 180px 0 80px;
    background-color: #F5F9FA;
}

.policy h1 {
    color: #1A2B88;
    margin-bottom: 40px;
    text-align: center;
}

.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy h2 {
    color: #1A2B88;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.policy ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy ul li {
    margin-bottom: 8px;
}

/* Thanks Page */
.thanks {
    background-color: #F5F9FA;
    padding: 180px 0 100px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thanks h1 {
    color: #1A2B88;
    margin-bottom: 20px;
}

.thanks p {
    font-size: 1.2rem;
    margin-bottom: 30px;
} 