/* style1.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(30, 136, 229, 0.9), rgba(30, 136, 229, 0.9)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Navigation */
nav {
    background-color: #1e88e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #e3f2fd;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1e88e5;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #1e88e5;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 800px;
    margin: 30px auto 0;
}

/* Offices Section */
.offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.office-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid #1e88e5;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.15);
}

.office-icon {
    font-size: 2.5rem;
    color: #1e88e5;
    margin-bottom: 25px;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.1);
}

.office-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1565c0;
}

.office-card p {
    color: #546e7a;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.office-card a {
    color: #1e88e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.office-card a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    background: #e3f2fd;
    padding: 60px 0;
    text-align: center;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    color: #1e88e5;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1565c0;
}

.info-card a {
    color: #1e88e5;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

/* Footer */
footer {
    background-color: #1e88e5;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e3f2fd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #1e88e5;
    transform: translateY(-3px);
}

.copyright {
    color: #e3f2fd;
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 10px 15px;
    }
    
    .offices, .info-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* About Content */
.about-content {
    padding: 80px 0;
    background: white;
}

.welcome-section {
    margin-bottom: 60px;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.highlight-text {
    font-weight: 600;
    color: #1e88e5 !important;
    font-size: 1.3rem !important;
    text-align: center;
    margin-top: 30px !important;
}

/* Mission Vision Section */
.mission-vision-section {
    background: #e3f2fd;
    padding: 60px 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid #1e88e5;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.15);
}

.mission-icon, .vision-icon {
    font-size: 2.5rem;
    color: #1e88e5;
    margin-bottom: 25px;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.1);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1565c0;
}

.mission-card p, .vision-card p {
    color: #546e7a;
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-align: left;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid #1e88e5;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.15);
}

.team-icon {
    font-size: 2.5rem;
    color: #1e88e5;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1565c0;
}

.team-card p {
    color: #546e7a;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.team-list {
    text-align: left;
    margin-top: 20px;
    list-style: none;
}

.team-list li {
    margin-bottom: 10px;
    color: #546e7a;
    position: relative;
    padding-left: 25px;
}

.team-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}
  /* Additional styles specific to the privacy policy page */
        .privacy-content {
            padding: 80px 0;
            background: white;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            color: #1e88e5;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e3f2fd;
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            color: #1565c0;
            margin: 25px 0 15px;
        }
        
        .privacy-section p, .privacy-section li {
            color: #546e7a;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .privacy-section ul {
            padding-left: 30px;
            margin-bottom: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .highlight {
            background-color: #e3f2fd;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #1e88e5;
        }
        
        .contact-info {
            background: #e3f2fd;
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
            text-align: center;
        }
        
        .contact-info h3 {
            color: #1565c0;
            margin-bottom: 20px;
        }
        
        .contact-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 20px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #546e7a;
            font-size: 1.1rem;
        }
        
        .contact-method i {
            color: #1e88e5;
            font-size: 1.3rem;
        }
        
        @media (max-width: 768px) {
            .contact-methods {
                flex-direction: column;
                gap: 15px;
            }
        }
        /* Additional styles specific to the terms page */
        .terms-content {
            padding: 80px 0;
            background: white;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            color: #1e88e5;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e3f2fd;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            color: #1565c0;
            margin: 25px 0 15px;
        }
        
        .terms-section p, .terms-section li {
            color: #546e7a;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            padding-left: 30px;
            margin-bottom: 20px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .highlight {
            background-color: #e3f2fd;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #1e88e5;
        }
        
        .contact-info {
            background: #e3f2fd;
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
            text-align: center;
        }
        
        .contact-info h3 {
            color: #1565c0;
            margin-bottom: 20px;
        }
        
        .contact-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 20px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #546e7a;
            font-size: 1.1rem;
        }
        
        .contact-method i {
            color: #1e88e5;
            font-size: 1.3rem;
        }
        
        .sub-section {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .contact-methods {
                flex-direction: column;
                gap: 15px;
            }
            
            .sub-section {
                margin-left: 10px;
            }
        }
    