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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 3.2rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #c87137;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a05828;
}

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

ul {
    list-style-position: inside;
    margin-bottom: 1.2rem;
}

ul li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #c87137;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0.5rem 0 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: #fff4e6;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.8rem;
    color: #856404;
    font-family: 'Arial', sans-serif;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c87137;
    font-family: 'Arial', sans-serif;
}

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

.nav-main a {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-magazine {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.hero-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-main-story {
    flex: 2 1 700px;
    position: relative;
    min-height: 500px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d4c5b9;
}

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

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

.hero-text-overlay h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
    opacity: 0.95;
}

.hero-sidebar {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-sidebar-item {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #c87137;
}

.hero-sidebar-item.featured {
    background-color: #c87137;
    color: #ffffff;
    border-left: 4px solid #a05828;
}

.hero-sidebar-item.featured h3 {
    color: #ffffff;
}

.hero-sidebar-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.hero-sidebar-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.intro-editorial {
    padding: 4rem 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    text-align: center;
    margin: 0;
}

.services-magazine {
    padding: 5rem 0;
    background-color: #fafafa;
}

.section-title-centered {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.8rem;
}

.magazine-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-card-large {
    flex: 2 1 600px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e8dcd0;
}

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

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.service-content p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #c87137;
    font-family: 'Arial', sans-serif;
}

.duration {
    font-size: 0.9rem;
    color: #777;
}

.btn-service {
    padding: 0.9rem 2rem;
    background-color: #c87137;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.service-column {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-compact {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-image-small {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8dcd0;
}

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

.service-content-compact {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content-compact h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.service-content-compact p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-service-small {
    padding: 0.7rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
}

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

.magazine-grid-secondary {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card-medium {
    flex: 1 1 380px;
    background-color: #ffffff;
}

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

.service-card-medium h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.5rem;
}

.service-card-medium p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
}

.service-card-medium .service-meta {
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.service-card-medium .btn-service {
    margin: 0 1.5rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.trust-section {
    padding: 5rem 0;
    background-color: #f0ede8;
}

.testimonial-featured {
    border-left: 5px solid #c87137;
    padding-left: 2.5rem;
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    color: #333;
}

.testimonial-featured cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: #777;
    font-family: 'Arial', sans-serif;
}

.philosophy-split {
    padding: 5rem 0;
    background-color: #ffffff;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.split-image {
    flex: 1 1 500px;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #e8dcd0;
}

.form-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e8e8e8;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #c87137;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.final-cta {
    padding: 5rem 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.footer-main {
    background-color: #1a252f;
    color: #b8c2cc;
    padding: 4rem 0 1rem 0;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #b8c2cc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    border-top: 1px solid #2c3e50;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #8f9ba8;
}

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

.page-hero-about,
.page-hero-services,
.page-hero-contact,
.page-hero-legal {
    padding: 4rem 0;
    background-color: #f0ede8;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.about-story {
    padding: 5rem 0;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-image {
    flex: 1 1 450px;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #e8dcd0;
}

.team-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 350px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-top: 4px solid #c87137;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.member-role {
    color: #c87137;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.member-info p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.7rem;
    color: #c87137;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.approach-section {
    padding: 5rem 0;
    background-color: #f0ede8;
}

.approach-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.approach-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.approach-image {
    flex: 1 1 450px;
}

.approach-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #e8dcd0;
}

.cta-about,
.cta-services {
    padding: 5rem 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-about h2,
.cta-services h2 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-about p,
.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #c87137;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-cta:hover {
    background-color: #a05828;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1 1 500px;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #e8dcd0;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c87137;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.price-large span {
    font-size: 1.1rem;
    font-weight: 400;
    color: #777;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

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

.btn-service-large {
    padding: 1.1rem 2.5rem;
    background-color: #c87137;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 1.5rem;
}

.btn-service-large:hover {
    background-color: #a05828;
}

.contact-content {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info-main h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    color: #c87137;
    margin-bottom: 0.8rem;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-sidebar {
    flex: 1 1 350px;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #c87137;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.btn-contact {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #c87137;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-contact:hover {
    background-color: #a05828;
}

.legal-notes {
    padding: 4rem 0;
    background-color: #fafafa;
}

.legal-notes h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-block p {
    font-size: 1.02rem;
    line-height: 1.8;
}

.legal-content {
    padding: 4rem 0;
}

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

.legal-article h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.legal-article h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-article h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

.legal-article p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-article ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.legal-article ul li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.cookie-table td {
    font-size: 0.95rem;
}

.thanks-hero {
    padding: 5rem 0;
    background-color: #f0ede8;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #5cb85c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem auto;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

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

.selected-service-info {
    margin: 2rem 0;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #c87137;
    display: inline-block;
    text-align: left;
}

.service-confirmation h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #777;
}

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c87137;
    margin: 0;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #c87137;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.btn-primary {
    padding: 1.1rem 2.5rem;
    background-color: #c87137;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-secondary {
    padding: 1.1rem 2.5rem;
    background-color: transparent;
    color: #c87137;
    border: 2px solid #c87137;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.thanks-additional {
    padding: 4rem 0;
    background-color: #ffffff;
}

.thanks-additional h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.tip-card {
    flex: 1 1 300px;
    background-color: #f9f9f9;
    padding: 2rem;
    border-top: 3px solid #c87137;
}

.tip-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tip-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-main-story {
        min-height: 400px;
    }

    .hero-text-overlay {
        padding: 2rem 1.5rem;
    }

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

    .split-container,
    .story-layout,
    .approach-split,
    .service-detail-layout {
        flex-direction: column;
    }

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

    .nav-main {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .thanks-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }

    .steps-list li {
        padding-left: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}