* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 28px;
    color: #25D366;
}

.logo h1 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1e2b;
}

nav a {
    color: #333;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #25D366;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #075E54;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8f9fa;
}

.services h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1e2b;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 48px;
    color: #25D366;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
}

/* Contact Page */
.contact-hero, .privacy-hero {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.contact-hero h2, .privacy-hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-details {
    display: grid;
    gap: 25px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.info-card i {
    font-size: 36px;
    color: #25D366;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Privacy Page */
.privacy-content {
    padding: 60px 0;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h3 {
    font-size: 24px;
    color: #075E54;
    margin-bottom: 15px;
}

.privacy-section p, .privacy-section ul {
    margin-bottom: 15px;
}

.privacy-section ul {
    padding-left: 25px;
}

.privacy-section li {
    margin-bottom: 8px;
}

/* Footer - CRITICAL for Meta Verification */
footer {
    background: #1a1e2b;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a {
    color: #aaa;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #aaa;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav a {
        margin: 0 15px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .service-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo image styling */
.logo img {
    display: block;
    object-fit: contain;
}

/* Hero logo image styling */
.hero-icon {
    display: inline-block;
    object-fit: contain;
}