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

:root {
    --primary-gold: #D4AF37;
    --dark-charcoal: #2C3E50;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #E0E0E0;
    --accent-blue: #0066CC;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.company-name {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-charcoal);
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.cta-btn {
    background-color: var(--primary-gold) !important;
    color: var(--dark-charcoal) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.cta-btn:hover {
    background-color: #c9a227 !important;
}

/* Hero Section */
.hero {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
}

.btn-primary:hover {
    background-color: #c9a227;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.services h2,
.how-it-works h2,
.team h2,
.about h2,
.consultation h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-charcoal);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-card h3,
.service-card p {
    padding: 0 30px;
}

.service-card h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-card p {
    padding-bottom: 30px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-charcoal);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.step {
    text-align: center;
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-charcoal);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.team-member h3,
.team-member p {
    padding: 0 30px;
}

.team-member h3 {
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 20px;
}

.member-avatar {
    display: none;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
}

.member-role {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 12px !important;
    padding: 0 30px !important;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 30px 30px !important;
    margin: 0 !important;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.about-content p:first-child {
    font-size: 18px;
    color: var(--dark-charcoal);
}

/* Consultation Section */
.consultation {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.consultation-content {
    max-width: 600px;
    margin: 0 auto;
}

.consultation-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.consultation-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.consultation-form button {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 20px;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--dark-charcoal);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-cta {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 600;
}

.footer-cta:hover {
    background-color: #c9a227;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services h2,
    .how-it-works h2,
    .team h2,
    .about h2,
    .consultation h2 {
        font-size: 32px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
