* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #d4a574;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
}

nav a:hover,
nav a.active {
    color: #fff;
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #d4a574;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Page Hero */
.page-hero {
    height: auto;
    padding: 100px 20px 20px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/gallery004.jpg') center/cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    color: #d4a574;
    text-transform: uppercase;
}

/* About Banner */
.about-banner {
    background-color: #fff;
    color: #333;
    padding: 30px 20px 0;
}

.about-banner .container {
    max-width: 900px;
}

.about-banner p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.about-banner p:last-child {
    margin-bottom: 0;
}

/* Services Banner */
.services-banner {
    background-color: #fff;
    color: #333;
    padding: 20px 20px 60px;
}

.services-banner .container {
    max-width: 900px;
}

.services-banner h2 {
    color: #333;
    font-size: 36px;
    margin-top: 40px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1;
}

.services-banner h2:first-child {
    margin-top: 40px;
}

.services-banner h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 8px;
}

.services-banner p {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.services-banner .services-intro {
    color: #d4a574;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 5px;
    text-align: left;
}

.services-banner ul {
    list-style: circle;
    margin: 8px 0 10px 30px;
}

.services-banner ul li {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.services-banner .services-note {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
}

.services-banner a {
    color: #d4a574;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-banner a:hover {
    color: #fff;
}

/* Costs Banner */
.costs-banner {
    background-color: #6CB4E4;
    color: #fff;
    padding: 50px 20px;
}

.costs-banner .container {
    max-width: 900px;
}

.costs-banner h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.costs-banner p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.costs-banner p:last-child {
    margin-bottom: 0;
}

/* Summary Banner */
.summary-banner {
    background-color: #1a2a4a;
    color: #fff;
    padding: 50px 20px;
}

.summary-banner .container {
    max-width: 900px;
}

.summary-banner h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.summary-banner p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.summary-banner p:last-child {
    margin-bottom: 0;
}

.summary-banner a {
    color: #d4a574;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.summary-banner a:hover {
    color: #fff;
}

/* About Content */
.about-content {
    padding: 80px 20px;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.about-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-intro a:hover {
    color: #6d3410;
    text-decoration: underline;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.about-item {
    text-align: center;
    padding: 30px 20px;
}

.about-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.about-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.about-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Philosophy Section */
.about-philosophy {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    background-color: #f9f9f9;
    border-left: 5px solid #8B4513;
}

.about-philosophy h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #333;
}

.about-philosophy p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-philosophy p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.about-services {
    max-width: 1100px;
    margin: 0 auto;
}

.about-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.services-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.services-note {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-top: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8B4513;
}

.service-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .hamburger {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.92);
        padding: 20px 30px;
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 20px;
    }

    .about-intro h2 {
        font-size: 32px;
    }

    .about-philosophy {
        padding: 40px 25px;
    }

    .about-philosophy h2 {
        font-size: 28px;
    }

    .about-services h2 {
        font-size: 28px;
    }

    .about-grid {
        gap: 40px;
    }

    .services-grid {
        gap: 30px;
    }
}
