/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-logo {
    width: 80px;
    height: 80px;
}

.header-text {
    text-align: left;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    margin: 0;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    background: white;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #4a90e2;
    line-height: 1.3;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.about-text h2 {
    margin-top: 0;
}

.about p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    color: #4a90e2;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    text-align: center;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text {
    text-align: left;
}

.contact-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.contact p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 15px;
}

.contact-email {
    margin: 30px 0;
}

.contact-email a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 15px 30px;
    border: 2px solid #4a90e2;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    background-color: #4a90e2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.privacy-note {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #777;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .header-logo {
        width: 60px;
        height: 60px;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text,
    .about-text,
    .contact-text {
        text-align: center;
    }
    
    .hero-image,
    .about-image,
    .contact-image {
        order: -1;
    }
    
    .hero-image img,
    .about-image img,
    .contact-image img {
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }
    
    section {
        padding: 50px 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-email a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 50px 0;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
