* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #2c2c2c;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2196F3;
}

/* Navigation */
.navbar {
    background-color: #0a1e3d;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2196F3;
}

.dropdown i {
    font-size: 10px;
    margin-left: 5px;
}

/* Mega Menu */
.mega-menu {
    background-color: rgba(50, 50, 50, 0.95);
    color: #fff;
    padding: 30px 0;
    display: none;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-column h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 8px;
}

.mega-column ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.mega-column ul li a:hover {
    color: #2196F3;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-nav {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background-color: #2196F3;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #1976D2;
}

/* Welcome Section */
.welcome {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.welcome-text .highlight {
    color: #2196F3;
}

.welcome-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.welcome-image {
    display: flex;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-service {
    background-color: #2196F3;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-service:hover {
    background-color: #1976D2;
}

/* Info Sections */
.info-sections {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.info-box h3 {
    background-color: #2196F3;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin: -30px -30px 20px -30px;
    border-radius: 10px 10px 0 0;
    font-size: 20px;
}

.news-item, .reminder-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-item:last-child, .reminder-item:last-child {
    border-bottom: none;
}

.calendar-months {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-months span {
    background-color: #f0f0f0;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
}

.reminder-item strong {
    display: block;
    color: #2196F3;
    margin-bottom: 8px;
}

.reminder-item p {
    font-size: 13px;
    color: #666;
}

.blog-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
}

.contact-icon {
    display: flex;
    justify-content: center;
}

.person-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 50%;
    position: relative;
}

.person-icon::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
}

.person-icon::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #2196F3;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #1976D2;
}

/* Disclaimer */
.disclaimer {
    background-color: #0a1e3d;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.disclaimer h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer Info Bar */
.footer-info {
    background-color: #2196F3;
    color: #fff;
    padding: 30px 0;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 30px;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #0a1e3d;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.footer-services h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-services ul {
    list-style: none;
}

.footer-services ul li {
    margin-bottom: 10px;
}

.footer-services ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-services ul li a:hover {
    color: #2196F3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2196F3;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
    }
    
    .welcome-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
