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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    background-color: #d4a574;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #c19563;
}

.btn-cookie.btn-outline {
    background-color: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
}

.btn-cookie.btn-outline:hover {
    background-color: rgba(212, 165, 116, 0.1);
}

.ad-disclosure {
    background-color: #f0e6d9;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.header-magazine {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

.nav-main a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-magazine {
    width: 100%;
    margin-bottom: 3rem;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    max-width: 900px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
}

.content-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.intro-section {
    margin-bottom: 3rem;
    padding: 0 10%;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.content-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.article-main {
    flex: 2.5;
}

.article-main h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #2c2c2c;
}

.article-main p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-main img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    object-fit: cover;
    background-color: #e8dcc8;
}

.inline-cta {
    background-color: #f5f0e8;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
}

.btn-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-inline:hover {
    background-color: #c19563;
}

.sidebar-content {
    flex: 1;
}

.highlight-box {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
}

.highlight-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-preview {
    background-color: #f5f0e8;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-preview h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
}

.service-preview ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-preview ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
}

.service-preview ul li:last-child {
    border-bottom: none;
}

.btn-small {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #1a1a1a;
}

.image-aside {
    margin-bottom: 2rem;
}

.image-aside img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8dcc8;
}

.testimonial-section {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 0;
    margin: 4rem 0;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #d4a574;
}

.services-showcase {
    margin: 5rem 0;
}

.services-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8dcc8;
}

.service-card h3 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c2c2c;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #666;
    flex-grow: 1;
}

.price-tag {
    padding: 1rem 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4a574;
}

.btn-select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #f5f0e8;
    padding: 4rem 2rem;
    margin: 5rem 0;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c2c2c;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #666;
    font-size: 1.05rem;
}

.inquiry-form {
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fff8f0;
    padding: 2rem;
    margin: 4rem 0;
    border-left: 4px solid #d4a574;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

.footer-magazine {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d4a574;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.content-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.about-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.about-hero .lead {
    font-size: 1.3rem;
    color: #666;
}

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

.about-story,
.about-approach,
.about-team,
.about-values {
    margin-bottom: 4rem;
}

.about-story h2,
.about-approach h2,
.about-team h2,
.about-values h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-story p,
.about-team p,
.about-values p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.about-story img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    object-fit: cover;
    background-color: #e8dcc8;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    background-color: #f5f0e8;
    padding: 2rem;
}

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.approach-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.cta-about {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s;
}

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

.content-services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.services-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 3rem;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-hero .lead {
    font-size: 1.3rem;
    color: #666;
}

.services-detailed {
    margin-bottom: 4rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8dcc8;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
}

.cta-services {
    background-color: #f5f0e8;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.cta-services p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.content-contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.contact-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-hero .lead {
    font-size: 1.3rem;
    color: #666;
}

.contact-container {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8dcc8;
}

.directions-section {
    background-color: #f5f0e8;
    padding: 3rem;
    margin-top: 3rem;
}

.directions-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.directions-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.content-thanks {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.thanks-message {
    text-align: center;
    padding: 5rem 0;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f5f0e8;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c2c2c;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
    background-color: #fafafa;
    padding: 2rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps ol li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.content-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.content-legal h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #4a4a4a;
}

@media (max-width: 1024px) {
    .content-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .service-detail {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .service-card {
        flex: 0 0 100%;
    }

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

    .contact-container {
        flex-direction: column;
    }

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

    .testimonial-container {
        flex-direction: column;
    }
}
