:root {
    --primary: #2d3e50;
    --secondary: #c9a86c;
    --accent: #8b5e3c;
    --light: #faf8f5;
    --dark: #1a1a1a;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --border: #e8e4dc;
    --white: #ffffff;
    --error: #c45c5c;
    --success: #5c8c5c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

.ad-banner {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(45, 62, 80, 0.95), rgba(45, 62, 80, 0.8));
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--white);
}

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.magazine-main {
    flex: 2;
    min-width: 300px;
}

.magazine-sidebar {
    flex: 1;
    min-width: 280px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

.intro-text:first-letter {
    font-size: 60px;
    float: left;
    line-height: 1;
    padding-right: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.highlight-box {
    background-color: var(--secondary);
    color: var(--white);
    padding: 30px;
    margin-bottom: 30px;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-img {
    height: 200px;
    background-color: var(--border);
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

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

.service-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.two-column {
    display: flex;
    gap: 50px;
    align-items: center;
}

.two-column > * {
    flex: 1;
}

.two-column-reverse {
    flex-direction: row-reverse;
}

.image-frame {
    position: relative;
    background-color: var(--border);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--secondary);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    display: block;
}

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

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial {
    background-color: var(--white);
    padding: 40px;
    border-left: 4px solid var(--secondary);
    margin: 40px 0;
}

.testimonial blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 14px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.services-grid .service-card {
    flex: 1;
    min-width: 300px;
    max-width: calc(33.333% - 20px);
}

.form-section {
    background-color: var(--white);
    padding: 50px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid var(--border);
    background-color: var(--light);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.contact-info {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 30px;
    color: var(--secondary);
    font-size: 18px;
}

.contact-item p {
    line-height: 1.6;
}

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    background-color: var(--border);
    padding: 30px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
}

.cookie-text a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--accent);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-reject:hover {
    border-color: var(--white);
}

.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.content-section h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

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

.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

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

.thanks-section {
    text-align: center;
    padding: 100px 20px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    color: var(--white);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 50%;
}

.thanks-section h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.inline-cta {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.inline-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.inline-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: var(--border);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--border);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-item h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-light);
    font-size: 15px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--border);
}

.hours-table td {
    padding: 15px 0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

.map-placeholder {
    height: 300px;
    background-color: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
}

@media (max-width: 900px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content {
        padding: 30px;
    }

    .two-column,
    .about-intro {
        flex-direction: column;
    }

    .two-column-reverse {
        flex-direction: column;
    }

    .services-grid .service-card {
        max-width: 100%;
    }

    .magazine-grid {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 50px 0;
    }

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

    .form-section {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: auto;
        min-height: auto;
    }

    .hero-content {
        padding: 25px;
    }

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

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
