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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

.nav-minimal {
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.nav-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-minimal {
    padding: 12rem 5% 10rem;
    text-align: center;
}

.hero-spacer {
    height: 4rem;
}

.hero-spacer-small {
    height: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.intro-block {
    padding: 8rem 5%;
    background-color: #f8f8f8;
}

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

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
}

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

.text-large {
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 300;
    color: #1a1a1a;
}

.visual-story {
    padding: 10rem 5%;
}

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

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.problem-section {
    padding: 8rem 5%;
    background-color: #1a1a1a;
    color: #fff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    padding: 2rem 0;
    border-bottom: 1px solid #333;
}

.problem-item p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e5e5e5;
}

.insight-block {
    padding: 10rem 5%;
}

.large-quote {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: #1a1a1a;
    border: none;
}

.approach-section {
    padding: 8rem 5%;
    background-color: #f8f8f8;
}

.approach-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 3rem;
    background-color: #fff;
    border: 1px solid #e5e5e5;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.cta-inline {
    padding: 6rem 5%;
    text-align: center;
}

.cta-link-large {
    font-size: 1.25rem;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: opacity 0.2s;
}

.cta-link-large:hover {
    opacity: 0.6;
}

.case-section {
    padding: 10rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.case-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.case-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.case-image {
    width: 100%;
}

.case-image img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-signals {
    padding: 8rem 5%;
    background-color: #f8f8f8;
}

.trust-signals h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.trust-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.trust-list {
    list-style: none;
    padding-left: 0;
}

.trust-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.trust-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.testimonial-section {
    padding: 8rem 5%;
}

.testimonial {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
}

.benefits-reveal {
    padding: 10rem 5%;
    background-color: #1a1a1a;
    color: #fff;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

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

.benefit-block {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 3rem 0;
}

.benefit-block h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.benefit-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ccc;
}

.urgency-block {
    padding: 8rem 5%;
    background-color: #f8f8f8;
}

.urgency-text {
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    color: #1a1a1a;
    font-weight: 300;
}

.services-pricing {
    padding: 10rem 5%;
}

.services-pricing h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-intro {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 3rem;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    position: relative;
}

.pricing-card.featured {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #1a1a1a;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
    min-height: 80px;
}

.pricing-card.featured .service-desc {
    color: #ccc;
}

.price {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-select:hover {
    opacity: 0.8;
}

.pricing-card.featured .btn-select {
    background-color: #fff;
    color: #1a1a1a;
}

.form-section {
    padding: 10rem 5%;
    background-color: #f8f8f8;
}

.form-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.form-intro {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.8;
}

.final-cta {
    padding: 10rem 5%;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.btn-final-cta:hover {
    opacity: 0.8;
}

.footer {
    padding: 5rem 5% 2rem;
    background-color: #1a1a1a;
    color: #fff;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 0.7;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: opacity 0.2s;
}

.sticky-btn:hover {
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 8rem 5% 5rem;
    text-align: center;
    background-color: #f8f8f8;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
}

.about-story {
    padding: 8rem 5%;
}

.story-block h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.philosophy-section {
    padding: 8rem 5%;
    background-color: #1a1a1a;
    color: #fff;
}

.philosophy-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-item {
    padding: 2rem 0;
    border-bottom: 1px solid #333;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.philosophy-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
}

.team-section {
    padding: 8rem 5%;
}

.team-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.team-intro {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.approach-detail {
    padding: 8rem 5%;
    background-color: #f8f8f8;
}

.approach-detail h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.approach-intro {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: #ccc;
    min-width: 80px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.results-section {
    padding: 8rem 5%;
}

.results-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.cta-section {
    padding: 8rem 5%;
    background-color: #f8f8f8;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.btn-cta:hover {
    opacity: 0.8;
}

.services-detail {
    padding: 8rem 5%;
}

.service-block {
    margin-bottom: 5rem;
    padding: 4rem;
    background-color: #f8f8f8;
    position: relative;
}

.featured-service {
    background-color: #1a1a1a;
    color: #fff;
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #1a1a1a;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.featured-service .service-description {
    color: #ccc;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.featured-service .service-list li {
    color: #ccc;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.featured-service .service-list li::before {
    color: #fff;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.featured-service .service-content p {
    color: #ccc;
}

.btn-select-service {
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 1rem;
}

.btn-select-service:hover {
    opacity: 0.8;
}

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

.services-faq {
    padding: 8rem 5%;
    background-color: #f8f8f8;
}

.services-faq h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid #ccc;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-content {
    padding: 8rem 5%;
}

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

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.info-block h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.info-block a {
    color: #1a1a1a;
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1rem;
}

.contact-map {
    flex: 1 1 400px;
}

.map-placeholder {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1rem;
}

.contact-approach {
    padding: 8rem 5%;
    background-color: #f8f8f8;
}

.contact-approach h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.approach-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1 1 200px;
    text-align: center;
}

.step-num {
    font-size: 3rem;
    font-weight: 200;
    color: #ccc;
    margin-bottom: 1rem;
}

.approach-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.contact-cta {
    padding: 8rem 5%;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.legal-page {
    padding: 8rem 5%;
}

.legal-intro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.thanks-hero {
    padding: 10rem 5%;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.thanks-service {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 500;
}

.thanks-detail {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-next {
    font-size: 1.05rem;
    color: #888;
    margin-bottom: 3rem;
}

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

.btn-primary {
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn-secondary {
    padding: 1.25rem 3rem;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid #1a1a1a;
    transition: opacity 0.2s;
}

.btn-secondary:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .text-large {
        font-size: 1.35rem;
    }

    .story-text h2 {
        font-size: 1.75rem;
    }

    .large-quote {
        font-size: 1.5rem;
    }

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

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

    .benefits-layout {
        flex-direction: column;
    }

    .benefit-block {
        flex: 1 1 100%;
    }

    .pricing-cards {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .thanks-content h1 {
        font-size: 2.5rem;
    }

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

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

    .case-section {
        flex-direction: column;
    }
}
