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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #E67E22;
    --accent-color: #8E44AD;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #ECF0F1;
    --bg-white: #FFFFFF;
    --border-color: #BDC3C7;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.hero-magazine {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-color: #1a1a1a;
}

.hero-image-block {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    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), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: var(--bg-white);
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #ECF0F1;
    max-width: 700px;
    font-style: italic;
}

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

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

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

.intro-columns {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.col-layout-3 {
    display: flex;
    gap: 50px;
}

.intro-col {
    flex: 1;
}

.intro-col h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-col p {
    font-size: 18px;
    line-height: 1.8;
}

.highlight-col {
    background-color: var(--bg-light);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
}

.lead-text {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
}

.narrative-section {
    padding: 100px 0;
    background-color: #F9F9F9;
}

.narrative-section img {
    width: 100%;
    height: auto;
    margin-bottom: 35px;
    border-radius: 3px;
}

.narrative-section h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.narrative-section p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.9;
}

.narrative-section blockquote {
    font-size: 24px;
    font-style: italic;
    padding: 40px 50px;
    margin: 50px 0;
    background-color: var(--bg-white);
    border-left: 5px solid var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
}

.services-preview {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.section-title-centered {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 15px);
}

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

.large-card .card-image-wrapper {
    flex: 0 0 55%;
}

.large-card .card-content {
    flex: 1;
}

.card-image-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.card-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

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

.price-tag {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.split-content-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.testimonials-inline {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonial-block {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.additional-services-offset {
    padding: 90px 0;
    background-color: #F5F5F5;
}

.offset-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.service-compact {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

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

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

.highlight-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0;
    overflow: hidden;
}

.highlight-service img {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-service h3,
.highlight-service p,
.highlight-service .price-tag {
    padding: 0 40px;
}

.highlight-service h3 {
    padding-top: 35px;
    color: var(--bg-white);
}

.highlight-service p {
    color: #ECF0F1;
}

.highlight-service .price-tag {
    color: var(--secondary-color);
}

.highlight-service .cta-button {
    margin: 0 40px 40px 40px;
    background-color: var(--secondary-color);
}

.highlight-service .cta-button:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.why-now-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.why-now-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.why-now-section p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.9;
}

.why-now-section img {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 3px;
}

.form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: 'Georgia', serif;
    border-radius: 3px;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 50px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.references-section {
    padding: 70px 0;
    background-color: #F9F9F9;
}

.references-section h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.references-list {
    list-style: none;
    margin-top: 25px;
}

.references-list li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
}

.references-list a:hover {
    text-decoration: underline;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 5% 0 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #95A5A6;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-header {
    padding: 80px 0 60px 0;
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page {
    padding: 70px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page ul li {
    font-size: 17px;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 16px;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: bold;
    color: var(--primary-color);
}

.about-story {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.philosophy-section p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.9;
}

.philosophy-quote {
    font-size: 26px;
    font-style: italic;
    padding: 50px 60px;
    margin: 50px 0;
    background-color: var(--bg-white);
    border-left: 5px solid var(--accent-color);
    color: var(--text-dark);
    line-height: 1.5;
}

.team-approach {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.team-approach h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.approach-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.approach-item {
    flex: 1 1 calc(50% - 18px);
    background-color: var(--bg-light);
    padding: 35px;
    border-left: 3px solid var(--secondary-color);
}

.approach-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 17px;
    line-height: 1.7;
}

.impact-section {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.impact-section img {
    width: 100%;
    height: auto;
    margin-bottom: 35px;
    border-radius: 3px;
}

.impact-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.impact-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.impact-list {
    margin: 30px 0 30px 30px;
    line-height: 1.9;
}

.impact-list li {
    font-size: 18px;
    margin-bottom: 12px;
}

.values-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 40px;
    border-top: 4px solid var(--accent-color);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-info {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--secondary-color);
}

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

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.location-info {
    padding: 70px 0;
    background-color: var(--bg-light);
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.location-info p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-detailed {
    padding: 70px 0;
    background-color: var(--bg-white);
}

.service-detail {
    margin-bottom: 80px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-highlights {
    margin: 35px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

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

.service-highlights ul {
    list-style: none;
    margin: 0;
}

.service-highlights ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-highlights ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-emphasis {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 25px 0;
    font-family: 'Arial', sans-serif;
}

.cta-final {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-final h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-final p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #ECF0F1;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-large:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.service-confirmation {
    margin: 30px 0;
}

.service-selected {
    font-size: 18px;
    padding: 20px 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    display: inline-block;
}

.service-selected strong {
    color: var(--secondary-color);
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.thanks-link {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: var(--secondary-color);
}

.thanks-note {
    margin-top: 50px;
    padding: 25px;
    background-color: var(--bg-light);
}

.thanks-note p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .col-layout-3 {
        flex-direction: column;
    }

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

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

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

    .large-card .card-image-wrapper {
        flex: 1;
    }

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

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

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

    .approach-item {
        flex: 1 1 100%;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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

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

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

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .thanks-links {
        flex-direction: column;
    }
}