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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2a2a2a;
    line-height: 1.7;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Arial', sans-serif;
}

.magazine-header {
    background-color: #fff;
    border-bottom: 3px solid #2a2a2a;
    padding: 20px 0;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-area {
    flex: 1 1 300px;
}

.site-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.main-nav a:hover {
    color: #c8754f;
}

.hero-magazine {
    position: relative;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    padding: 40px;
    color: #fff;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

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

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

.intro-grid {
    padding: 80px 0;
    background-color: #fff;
}

.three-column-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.column-main {
    flex: 2 1 600px;
}

.column-sidebar {
    flex: 1 1 300px;
}

.column-main h3 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #2a2a2a;
}

.column-main p {
    margin-bottom: 20px;
    font-size: 18px;
}

.highlight-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #c8754f;
}

.highlight-box h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.services-quick-list {
    list-style: none;
    margin-bottom: 25px;
}

.services-quick-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}

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

.cta-sidebar {
    display: inline-block;
    background-color: #2a2a2a;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-sidebar:hover {
    background-color: #c8754f;
}

.featured-services {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.section-heading {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2a2a2a;
}

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

.service-card-magazine {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-magazine.large {
    flex: 1 1 100%;
    flex-direction: row;
}

.service-card-magazine.large .card-image {
    flex: 1 1 50%;
}

.service-card-magazine.large .card-content {
    flex: 1 1 50%;
}

.card-image {
    width: 100%;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-card-magazine .card-image {
    height: 300px;
}

.service-card-magazine.large .card-image {
    height: auto;
}

.card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #c8754f;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #c8754f;
}

.testimonial-ribbon {
    padding: 60px 0;
    background-color: #2a2a2a;
    color: #fff;
}

.testimonial-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial-main {
    flex: 2 1 500px;
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-secondary {
    flex: 1 1 300px;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

blockquote p {
    margin-bottom: 15px;
}

cite {
    font-style: normal;
    font-size: 14px;
    opacity: 0.8;
}

.additional-services {
    padding: 80px 0;
    background-color: #fff;
}

.two-column-asymmetric {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.column-wide {
    flex: 2 1 650px;
}

.column-narrow {
    flex: 1 1 350px;
}

.column-narrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-row {
    margin-bottom: 50px;
}

.service-block h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.service-block p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2a2a2a;
}

.lead-text {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.principle-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.principle {
    flex: 1 1 250px;
}

.principle h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.principle p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-section-inline {
    padding: 60px 0;
    background-color: #c8754f;
    color: #fff;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box-centered h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-primary-large {
    display: inline-block;
    background-color: #fff;
    color: #2a2a2a;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary-large:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.booking-section {
    padding: 80px 0;
    background-color: #fff;
}

.booking-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2a2a2a;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 16px;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    display: block;
    margin: 30px auto 0;
}

.btn-submit:hover {
    background-color: #c8754f;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f0f0f0;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.magazine-footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c8754f;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2a2a2a;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 500px;
    font-size: 14px;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #c8754f;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background-color: #c8754f;
    color: #fff;
}

.btn-accept:hover {
    background-color: #a86540;
}

.btn-reject {
    background-color: #444;
    color: #fff;
}

.btn-reject:hover {
    background-color: #555;
}

.page-hero-small {
    padding: 60px 0;
    background-color: #2a2a2a;
    color: #fff;
    text-align: center;
}

.page-hero-small h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

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

.about-story {
    padding: 80px 0;
    background-color: #fff;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1 1 450px;
    background-color: #e0e0e0;
}

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

.story-text {
    flex: 1 1 500px;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-section h3 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2a2a2a;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    padding: 35px;
    border-left: 4px solid #c8754f;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2a2a2a;
}

.approach-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1 1 550px;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image {
    flex: 1 1 400px;
    background-color: #e0e0e0;
}

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

.methodology-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.methodology-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2a2a2a;
}

.methodology-content {
    max-width: 900px;
    margin: 0 auto;
}

.method-block {
    margin-bottom: 40px;
}

.method-block h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.method-block p {
    font-size: 17px;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 0;
    background-color: #c8754f;
    color: #fff;
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-box h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-text {
    font-size: 20px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 0;
    background-color: #fff;
}

.service-detail-block {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.service-detail-layout.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1 1 550px;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.service-intro {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2a2a2a;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c8754f;
    font-size: 20px;
}

.service-detail-content > p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-pricing-box {
    background-color: #f9f9f9;
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid #c8754f;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.price-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1 1 450px;
    background-color: #e0e0e0;
    height: 500px;
}

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

.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 450px;
}

.contact-info-block h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2a2a2a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #c8754f;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-image-block {
    flex: 1 1 450px;
    background-color: #e0e0e0;
}

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

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

.location-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.location-content {
    max-width: 800px;
}

.location-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.location-content h4 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2a2a2a;
}

.directions-list {
    list-style: none;
    margin-bottom: 25px;
}

.directions-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
}

.directions-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c8754f;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fff;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #5cb85c;
    margin-bottom: 30px;
}

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid #c8754f;
}

.selected-service-info {
    font-size: 16px;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #2a2a2a;
}

.steps-list {
    list-style-position: inside;
    padding-left: 0;
}

.steps-list li {
    padding: 15px 0;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #2a2a2a;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c8754f;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #2a2a2a;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.legal-page {
    padding: 60px 0;
    background-color: #fff;
}

.legal-page h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2a2a2a;
}

.legal-content {
    max-width: 900px;
}

.legal-content h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: #2a2a2a;
}

.legal-content h4 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #2a2a2a;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.legal-content a {
    color: #c8754f;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .three-column-layout,
    .two-column-asymmetric,
    .story-layout,
    .approach-layout,
    .service-detail-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-card-magazine.large {
        flex-direction: column;
    }

    .section-heading,
    .page-hero-small h2 {
        font-size: 28px;
    }

    .testimonial-layout {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}