/* Reset and base styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f8fafb;
    color: #222;
}

a {
    color: #219653;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 48px 24px 48px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    height: 90px;
    width: 64px;
    object-fit: contain;
    margin-right: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(33,150,83,0.08);
}

.brand h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #145c1b;
    letter-spacing: 0.5px;
}

.brand .tagline {
    color: #555;
    font-size: 1.1rem;
    font-weight: 400;
}

nav {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 0 5%;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    font-size: 1.15rem;
    color: #145c1b;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul li a.active {
    color: #4cd964;
    font-weight: 600;
}

nav ul li .contact-btn {
    background: #4cd964;
    color: #fff !important;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 7px;
    display: inline-block;
    font-size: 1.15rem;
    border: none;
    transition: background 0.2s;
}

nav ul li .contact-btn:hover {
    background: #38b653;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #e8f5e9 60%, #fff 100%);
    padding: 40px 5% 0 5%;
    min-height: 400px;
    position: relative;
}

.hero-content {
    max-width: 50%;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #219653;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.btn-primary {
    background: #219653;
    color: #fff;
}

.btn-primary:hover {
    background: #17643a;
}

.btn-secondary {
    background: #fff;
    color: #219653;
    border: 2px solid #219653;
}

.btn-secondary:hover {
    background: #219653;
    color: #fff;
}

.hero-img {
    max-width: 45%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(33, 150, 83, 0.08);
}

main {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-highlight, .services-list {
    margin: 40px 0;
}

.services-highlight h2,
.services-list h2 {
    text-align: center;
    color: #219653;
    font-size: 2rem;
    margin-bottom: 32px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(33, 150, 83, 0.08);
    padding: 24px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 6px 32px rgba(33, 150, 83, 0.16);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: #219653;
    margin: 0 0 12px 0;
    font-size: 1.3rem;
}

.service-card p {
    color: #444;
    font-size: 1rem;
    text-align: center;
}

.center {
    text-align: center;
    margin-top: 32px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #e8f5e9;
    border-radius: 16px;
    padding: 40px 5%;
    margin: 40px 0;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: #219653;
    font-size: 2rem;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-img {
    flex: 1;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(33, 150, 83, 0.08);
}

.cta-section {
    background: linear-gradient(90deg, #219653 60%, #fff 100%);
    color: #fff;
    padding: 48px 5%;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 32px 0 16px 0;
    margin-top: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo img {
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 1rem;
    color: #b2dfdb;
}

footer a {
    color: #b2dfdb;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.about-hero-img {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(33, 150, 83, 0.08);
}

.about-hero-content {
    flex: 1;
}

.contact-hero {
    background: #e8f5e9;
    padding: 40px 5%;
    border-radius: 16px;
    margin: 40px 0 24px 0;
    text-align: center;
}

.contact-form-section {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.contact-form {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(33, 150, 83, 0.08);
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    font-weight: 600;
    color: #219653;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
}

.contact-form button {
    margin-top: 12px;
}

.contact-info-section {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-section h3 {
    color: #219653;
    margin-bottom: 12px;
}

.recent-work-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    grid-template-rows: 320px 220px;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.rw-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(20,92,27,0.08);
    transition: transform 0.3s;
}

.rw-img img:hover {
    transform: scale(1.04);
}

.rw-img1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.rw-img2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.rw-img3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.rw-img4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.rw-img5 { grid-column: 2 / 4; grid-row: 2 / 3; }
.rw-img6 { grid-column: 3 / 4; grid-row: 1 / 3; }

.stylish-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 180px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.compassion-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: url('https://images.pexels.com/photos/1181716/pexels-photo-1181716.jpeg?auto=compress&w=1600&h=600&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.compassion-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,92,27,0.55);
    z-index: 1;
}
.compassion-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}
.compassion-hero-content h2 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.compassion-hero-content p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    font-weight: 400;
}
.compassion-btn {
    background: #4cd964;
    color: #fff;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(76,217,100,0.10);
    border: none;
    display: inline-block;
    transition: background 0.2s;
}
.compassion-btn:hover {
    background: #38b755;
}

/* Mobile & Tablet Responsive Styles */
@media (max-width: 900px) {
    /* Header & Navigation */
    header.main-header {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .logo-area {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .logo {
        height: 80px;
        width: 80px;
    }
    
    .brand h1 {
        font-size: 1.5rem;
    }
    
    .brand .tagline {
        font-size: 0.9rem;
    }
    
    nav {
        width: 100%;
        padding: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li .contact-btn {
        padding: 12px 32px;
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 32px 20px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-img {
        max-width: 100%;
        margin-top: 24px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* About Section */
    .about-highlight {
        flex-direction: column;
        padding: 32px 20px;
    }
    
    .about-hero {
        flex-direction: column;
    }
    
    .about-content, .about-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .about-img, .about-hero-img {
        max-width: 100%;
        width: 100%;
        margin-top: 24px;
    }
    
    /* Recent Work Grid */
    .recent-work-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        padding: 0 20px;
    }
    
    .rw-img1, .rw-img2, .rw-img3, .rw-img4, .rw-img5, .rw-img6 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .rw-img img {
        height: 250px;
    }
    
    .stylish-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        padding: 0 20px;
    }
    
    /* Compassion Hero */
    .compassion-hero {
        min-height: 280px;
    }
    
    .compassion-hero-content h2 {
        font-size: 2rem;
    }
    
    .compassion-hero-content p {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 32px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Contact Form */
    .contact-form {
        max-width: 100%;
        padding: 24px;
    }
    
    /* Footer */
    footer {
        padding: 32px 20px;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    /* Main Container */
    main {
        width: 95%;
    }
}

@media (max-width: 600px) {
    /* Extra small screens */
    header.main-header {
        padding: 16px;
    }
    
    .brand h1 {
        font-size: 1.2rem;
    }
    
    .brand .tagline {
        font-size: 0.85rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .services-highlight h2,
    .services-list h2,
    .about-content h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    nav ul li a {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .compassion-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .rw-img img {
        height: 200px;
    }
    
    .service-card {
        padding: 16px;
    }
    
    .service-card img {
        height: 150px;
    }
    
    .compassion-hero {
        min-height: 240px;
    }
    
    .compassion-hero-content h2 {
        font-size: 1.6rem;
    }
    
    .compassion-hero-content p {
        font-size: 0.95rem;
    }
    
    .about-highlight, .about-hero, .cta-section {
        padding: 24px 16px;
    }
    
    main {
        width: 98%;
    }
}