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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
}

.page-wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
}

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

.site-header {
    background: #ffffff;
    border-bottom: 3px solid #C1440E;
    padding: 20px 0;
    position: relative;
}

.header-content {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.logo-area {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
}

.site-logo {
    font-size: 28px;
    font-weight: bold;
    color: #C1440E;
    text-decoration: none;
}

.nav-area {
    display: table-cell;
    vertical-align: middle;
    width: 70%;
    text-align: right;
}

.main-nav {
    display: inline-block;
}

.nav-list {
    list-style: none;
    display: table;
    table-layout: fixed;
}

.nav-item {
    display: table-cell;
    padding: 0 15px;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #C1440E;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    color: #C1440E;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.header-main {
    background: linear-gradient(135deg, #F4A261 0%, #C1440E 100%);
    padding: 80px 0;
    color: #ffffff;
}

.hero-content {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.hero-text {
    display: table-cell;
    vertical-align: middle;
    width: 55%;
    padding-right: 40px;
}

.hero-visual {
    display: table-cell;
    vertical-align: middle;
    width: 45%;
}

.hero-headline {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.primary-cta {
    display: inline-block;
    background: #ffffff;
    color: #C1440E;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #ffffff;
}

.primary-cta:hover {
    background: transparent;
    color: #ffffff;
}

.content-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: #C1440E;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.content-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 30px 0;
}

.grid-item {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
}

.grid-item-half {
    display: table-cell;
    vertical-align: top;
    width: 50%;
}

.info-card {
    background: #f0f0f0;
    padding: 30px;
    border-left: 4px solid #C1440E;
    height: 100%;
}

.card-icon {
    font-size: 42px;
    color: #C1440E;
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    color: #333333;
    margin-bottom: 15px;
}

.card-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.detail-box {
    background: #ffffff;
    border: 2px solid #F4A261;
    padding: 25px;
    margin-bottom: 20px;
}

.box-header {
    font-size: 20px;
    color: #C1440E;
    margin-bottom: 12px;
    font-weight: bold;
}

.box-content {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
}

.info-block {
    background: #F4A261;
    padding: 50px 0;
    color: #ffffff;
}

.block-content {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.block-text {
    display: table-cell;
    vertical-align: middle;
    width: 60%;
    padding-right: 40px;
}

.block-visual {
    display: table-cell;
    vertical-align: middle;
    width: 40%;
}

.block-heading {
    font-size: 32px;
    margin-bottom: 20px;
}

.block-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.action-button {
    display: inline-block;
    background: #C1440E;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s;
}

.action-button:hover {
    background: #9B3309;
}

.data-area {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 6px;
}

.data-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.data-row {
    display: table-row;
}

.data-label {
    display: table-cell;
    vertical-align: middle;
    width: 35%;
    font-weight: bold;
    color: #333333;
    padding: 12px 20px;
    background: #ffffff;
}

.data-value {
    display: table-cell;
    vertical-align: middle;
    width: 65%;
    color: #666666;
    padding: 12px 20px;
    background: #ffffff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f0f0f0;
    padding: 40px;
}

.form-row {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #cccccc;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #C1440E;
    outline: none;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #C1440E;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 17px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #9B3309;
}

.testimonial-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.testimonial-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 25px 0;
}

.testimonial-item {
    display: table-cell;
    vertical-align: top;
    width: 50%;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-top: 5px solid #F4A261;
}

.testimonial-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #C1440E;
    font-size: 15px;
}

.testimonial-role {
    color: #666666;
    font-size: 14px;
}

.image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-item {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.feature-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C1440E;
    font-weight: bold;
    font-size: 18px;
}

.cta-section {
    background: #C1440E;
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
}

.cta-heading {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #C1440E;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #F4A261;
    color: #ffffff;
}

.site-footer {
    background: #333333;
    color: #ffffff;
    padding: 50px 0 30px;
}

.footer-layout {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 30px 0;
}

.footer-column {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
}

.footer-heading {
    font-size: 18px;
    color: #F4A261;
    margin-bottom: 20px;
}

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

.footer-item {
    margin-bottom: 10px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #F4A261;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #555555;
    color: #cccccc;
    font-size: 14px;
}

.breadcrumb {
    padding: 15px 0;
    background: #f9f9f9;
    font-size: 14px;
}

.breadcrumb-list {
    list-style: none;
    display: table;
}

.breadcrumb-item {
    display: table-cell;
    padding-right: 10px;
}

.breadcrumb-item:after {
    content: "›";
    margin-left: 10px;
    color: #999999;
}

.breadcrumb-item:last-child:after {
    content: "";
}

.breadcrumb-link {
    color: #C1440E;
    text-decoration: none;
}

.breadcrumb-current {
    color: #666666;
}

.content-zone {
    margin-bottom: 40px;
}

.zone-title {
    font-size: 26px;
    color: #C1440E;
    margin-bottom: 20px;
    border-bottom: 2px solid #F4A261;
    padding-bottom: 10px;
}

.zone-content {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.zone-content p {
    margin-bottom: 15px;
}

.zone-content h3 {
    font-size: 22px;
    color: #333333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.zone-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.zone-content li {
    margin-bottom: 8px;
}

.highlight-box {
    background: #FFF8F0;
    border: 2px solid #F4A261;
    padding: 25px;
    margin: 30px 0;
}

.highlight-title {
    font-size: 20px;
    color: #C1440E;
    margin-bottom: 12px;
    font-weight: bold;
}

.highlight-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
}

.stats-section {
    background: #9B8E7E;
    color: #ffffff;
    padding: 50px 0;
}

.stats-container {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 20px 0;
}

.stat-item {
    display: table-cell;
    vertical-align: middle;
    width: 25%;
    text-align: center;
}

.stat-number {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 25px;
}

.service-item {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
}

.service-card {
    background: #ffffff;
    border: 3px solid #F4A261;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #C1440E;
    box-shadow: 0 6px 20px rgba(193, 68, 14, 0.2);
}

.service-icon {
    font-size: 52px;
    color: #C1440E;
    margin-bottom: 20px;
}

.service-name {
    font-size: 22px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #C1440E;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
}

.service-link:hover {
    text-decoration: underline;
}

.page-title-section {
    background: #F4A261;
    padding: 40px 0;
    text-align: center;
    color: #ffffff;
}

.page-title {
    font-size: 38px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 18px;
    margin-top: 12px;
}

.two-column-layout {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 40px 0;
}

.main-content-area {
    display: table-cell;
    vertical-align: top;
    width: 65%;
}

.sidebar-area {
    display: table-cell;
    vertical-align: top;
    width: 35%;
}

.sidebar-widget {
    background: #f0f0f0;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    color: #C1440E;
    margin-bottom: 15px;
    font-weight: bold;
}

.widget-content {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
}

.faq-item {
    background: #ffffff;
    border-left: 4px solid #C1440E;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    color: #C1440E;
    font-weight: bold;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
}

.team-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 30px;
}

.team-member {
    display: table-cell;
    vertical-align: top;
    width: 25%;
}

.member-photo {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.member-name {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 5px;
}

.member-position {
    font-size: 15px;
    color: #C1440E;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.pricing-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 20px 0;
}

.pricing-column {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #F4A261;
    padding: 30px;
    text-align: center;
}

.pricing-card.featured {
    border-color: #C1440E;
    border-width: 3px;
    position: relative;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 42px;
    color: #C1440E;
    font-weight: bold;
}

.pricing-period {
    font-size: 16px;
    color: #666666;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-feature {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #333333;
}

.pricing-cta {
    display: block;
    background: #C1440E;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.pricing-cta:hover {
    background: #9B3309;
}

.location-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 30px;
}

.location-item {
    display: table-cell;
    vertical-align: top;
    width: 50%;
}

.location-card {
    background: #f0f0f0;
    padding: 30px;
}

.location-name {
    font-size: 24px;
    color: #C1440E;
    font-weight: bold;
    margin-bottom: 15px;
}

.location-details {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
}

.alert-box {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.alert-info {
    background: #E3F2FD;
    border-left: 4px solid #0066cc;
    color: #0066cc;
}

.alert-success {
    background: #E8F5E9;
    border-left: 4px solid #009900;
    color: #009900;
}

.alert-warning {
    background: #FFF3E0;
    border-left: 4px solid #ff9900;
    color: #ff9900;
}

.button-group {
    display: table;
    table-layout: fixed;
    border-spacing: 15px 0;
}

.button-group-item {
    display: table-cell;
}

.secondary-button {
    display: inline-block;
    background: #9B8E7E;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s;
}

.secondary-button:hover {
    background: #7A6D5F;
}

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

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

.text-right {
    text-align: right;
}

.spacing-small {
    margin-bottom: 20px;
}

.spacing-medium {
    margin-bottom: 40px;
}

.spacing-large {
    margin-bottom: 60px;
}

@media screen and (max-width: 800px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        display: block;
        width: 100%;
    }

    .nav-item {
        display: block;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .header-content,
    .hero-content,
    .content-grid,
    .grid-item-half,
    .block-content,
    .testimonial-grid,
    .footer-layout,
    .two-column-layout,
    .stats-container,
    .service-grid,
    .team-grid,
    .pricing-table,
    .location-grid,
    .button-group {
        display: block;
    }

    .logo-area,
    .nav-area,
    .hero-text,
    .hero-visual,
    .grid-item,
    .grid-item-half,
    .block-text,
    .block-visual,
    .testimonial-item,
    .footer-column,
    .main-content-area,
    .sidebar-area,
    .stat-item,
    .service-item,
    .team-member,
    .pricing-column,
    .location-item,
    .button-group-item {
        display: block;
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .hero-text {
        padding-right: 0;
    }

    .block-text {
        padding-right: 0;
    }

    .hero-headline {
        font-size: 32px;
    }

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

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

    .page-title {
        font-size: 30px;
    }

    .main-container {
        padding: 0 15px;
    }

    .content-section {
        padding: 40px 0;
    }

    .info-block {
        padding: 40px 0;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .content-grid,
    .service-grid,
    .team-grid,
    .pricing-table,
    .location-grid {
        border-spacing: 0;
    }

    .data-label,
    .data-value {
        display: block;
        width: 100%;
    }

    .data-label {
        border-bottom: none;
    }
}

@media screen and (max-width: 500px) {
    .site-logo {
        font-size: 22px;
    }

    .hero-headline {
        font-size: 26px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .primary-cta {
        padding: 14px 28px;
        font-size: 16px;
    }

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

    .card-title {
        font-size: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }
}
