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

:root {
    --primary-color: #8b6f47;
    --secondary-color: #c4a574;
    --accent-color: #a6895d;
    --text-dark: #2c2416;
    --text-light: #5a4e3d;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e5ddd0;
    --border-radius: 12px;
    --spacing-unit: 28px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 17px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-unit) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(44, 36, 22, 0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.logo {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo:hover,
.logo:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-color);
}

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.12);
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 111, 71, 0.25);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.features {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.feature-card {
    text-align: center;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(44, 36, 22, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.popular-services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 36, 22, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 32px;
}

.service-card-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.service-card-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.guide-tips {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.guide-tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.guide-tips-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.guide-tips-text p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 18px;
}

.tips-list {
    list-style: none;
    margin-bottom: 40px;
}

.tips-list li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.guide-tips-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.12);
}

.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(44, 36, 22, 0.08);
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 17px;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--bg-white);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta .btn-primary:hover,
.cta .btn-primary:focus {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.cta .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta .btn-outline:hover,
.cta .btn-outline:focus {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 19px;
    color: var(--text-light);
    font-weight: 300;
}

.services-section {
    padding: 80px 0;
}

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

.service-card-page {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 36, 22, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    min-width: 0;
    max-width: 100%;
}

.service-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.12);
}

.service-card-page img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.service-card-page-content {
    padding: 36px;
}

.service-card-page-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.service-card-page-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.service-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.service-type,
.service-time {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-info {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.info-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(44, 36, 22, 0.08);
    border: 1px solid var(--border-color);
    min-width: 0;
    max-width: 100%;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.guide-section {
    padding: 80px 0;
}

.guide-content {
    max-width: 850px;
    margin: 0 auto;
}

.guide-article {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-color);
}

.guide-article:last-child {
    border-bottom: none;
}

.guide-article h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.guide-article p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.guide-article ul {
    margin-left: 28px;
    margin-top: 20px;
}

.guide-article li {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 16px;
}

.guide-article strong {
    color: var(--text-dark);
}

.about-section {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 17px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.12);
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(44, 36, 22, 0.08);
    text-align: center;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.team-section {
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 400;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-group label {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.08);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.thankyou-section {
    padding: 140px 0;
    text-align: center;
}

.thankyou-content h1 {
    font-size: 46px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.thankyou-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-weight: 300;
}

.policy-section {
    padding: 80px 0;
}

.policy-content {
    max-width: 950px;
    margin: 0 auto;
}

.policy-content article {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-color);
}

.policy-content article:last-child {
    border-bottom: none;
}

.policy-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.policy-content h3 {
    font-size: 24px;
    margin-top: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 16px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 32px;
    margin-top: 100px;
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 400;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 400;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .logo {
        font-size: 18px;
        max-width: calc(100% - 60px);
    }

    .header-content {
        gap: 12px;
    }

    .nav-menu {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 88px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 48px 24px;
        transition: var(--transition);
        box-shadow: 0 4px 16px rgba(44, 36, 22, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-card {
        padding: 32px 24px;
        min-width: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-card {
        min-width: 0;
    }

    .services-grid-page {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-card-page {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .service-card-page img {
        max-width: 100%;
        height: auto;
    }

    .service-card-page-content {
        padding: 24px 20px;
    }

    .service-card-page-content h3 {
        font-size: 22px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .service-card-content h3 {
        font-size: 22px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .info-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 32px 24px;
    }

    .info-card h3 {
        font-size: 22px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .guide-tips-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta .btn {
        width: 100%;
        text-align: center;
    }

    .page-header h1 {
        font-size: 36px;
    }

    :root {
        --spacing-unit: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
        max-width: calc(100% - 50px);
    }

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

    .section-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card-content {
        padding: 24px 20px;
    }

    .service-card-content h3 {
        font-size: 20px;
    }

    .services-grid-page {
        gap: 24px;
    }

    .service-card-page-content {
        padding: 20px 16px;
    }

    .service-card-page-content h3 {
        font-size: 20px;
    }

    .info-grid {
        gap: 24px;
    }

    .info-card {
        padding: 24px 20px;
    }

    .info-card h3 {
        font-size: 20px;
    }
}

