:root {
    --primary-color: #2c5f6f;
    --secondary-color: #d4a574;
    --accent-color: #8b6f47;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark-text);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    font-size: 1rem;
    color: var(--light-text);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 111, 0.85) 0%, rgba(139, 111, 71, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4rem;
}

.hero-content-offset {
    max-width: 650px;
    color: white;
    margin-left: 5%;
}

.hero-content-offset h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.95;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.btn-sticky {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    background: var(--accent-color);
}

.story-intro {
    padding: 6rem 0;
    background: var(--bg-white);
}

.story-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.story-intro p {
    font-size: 1.25rem;
    line-height: 1.9;
}

.problem-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.problem-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: none;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c44536;
    font-weight: bold;
}

.insight-reveal {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.insight-reveal h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.large-text {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.large-text.accent {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.visual-showcase {
    padding: 6rem 0;
    background: var(--bg-white);
}

.showcase-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
}

.showcase-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.showcase-caption {
    padding: 1.5rem;
    background: white;
}

.showcase-caption h4 {
    margin-bottom: 0.5rem;
}

.showcase-caption p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
}

.trust-builder {
    padding: 6rem 0;
    background: var(--bg-light);
}

.trust-builder h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-card h4 {
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 1rem;
    color: var(--light-text);
    margin: 0;
}

.testimonials-flow {
    padding: 6rem 0;
    background: var(--bg-white);
}

.testimonial-large {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-large p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-large cite {
    font-style: normal;
    font-size: 1rem;
    color: var(--light-text);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.benefit-reveal {
    padding: 6rem 0;
    background: var(--bg-light);
}

.asymmetric-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-block {
    flex: 1.2;
}

.benefit-visual {
    flex: 0.8;
}

.benefit-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-large);
}

.benefit-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.benefit-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    margin: 0;
}

.cta-block-primary {
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-cta-large:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.pricing-reveal {
    padding: 6rem 0;
    background: var(--bg-white);
}

.pricing-reveal h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service:hover {
    background: var(--accent-color);
}

.form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    margin-bottom: 1rem;
}

.selected-service-display {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group small {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.urgency-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.urgency-box {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.urgency-box h3 {
    color: #e65100;
    margin-bottom: 1rem;
}

.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(44, 95, 111, 0.95) 0%, rgba(139, 111, 71, 0.95) 100%),
                url('https://images.unsplash.com/photo-1513885535751-8b9238bd345a?w=1600&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.cta-overlay h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-overlay p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn-cta-final {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.3rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-cta-final:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

.site-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 4rem 0 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-reject:hover {
    background: white;
    color: var(--dark-text);
}

.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 6rem 0;
}

.story-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.values-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.team-values {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.team-values p {
    margin-bottom: 1rem;
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-info {
    flex: 1;
}

.price-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-info ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-info ul li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    list-style: none;
}

.service-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.service-features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.feature-item h4 {
    margin-bottom: 0.8rem;
}

.contact-info-section {
    padding: 6rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-details,
.contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-note {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 111, 0.9);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
}

.legal-page {
    padding: 8rem 0 4rem;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    list-style: disc;
}

.legal-page ol li {
    list-style: decimal;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.cookies-table thead {
    background: var(--primary-color);
    color: white;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.thanks-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.order-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.order-details h3 {
    margin-bottom: 1rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h4 {
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

    h2 {
        font-size: 2rem;
    }

    .hero-content-offset h1 {
        font-size: 3rem;
    }

    .split-layout,
    .asymmetric-layout,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-visual {
        height: 60vh;
    }

    .hero-overlay {
        padding: 0 2rem;
    }

    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

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

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

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

    .container,
    .narrow-content {
        padding: 0 1.5rem;
    }
}