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

:root {
    --primary-dark: #1a3a2e;
    --primary-green: #2d5f4f;
    --accent-gold: #c9a961;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dce1e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

.btn-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-accept:hover {
    background: #d4b876;
}

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

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

.nav-main {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-dark);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.hero-funnel {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.95), rgba(45, 95, 79, 0.85)), url('../images/hero-fishing.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    padding: 2rem;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

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

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

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

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.intro-text.emphasis {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 2rem;
}

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

.story-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.section-amplify {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    color: var(--bg-white);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.cost-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.cost-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.cost-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.cost-item p {
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.insight-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.insight-image img {
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.section-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.reveal-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

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

.feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature p {
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.trust-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.section-proof {
    padding: 5rem 2rem;
    background: var(--primary-green);
    color: var(--bg-white);
}

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

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
}

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

.packages-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.packages-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.package-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    background: var(--primary-green);
    color: var(--bg-white);
    border: 3px solid var(--accent-gold);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.package-card.featured h3 {
    color: var(--accent-gold);
}

.package-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.package-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-details li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.package-card.featured .package-price {
    color: var(--accent-gold);
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-green);
    transform: scale(1.02);
}

.package-card.featured .btn-select {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.package-card.featured .btn-select:hover {
    background: #d4b876;
}

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

.section-guarantee h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.guarantee-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantee-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.guarantee-item p {
    line-height: 1.7;
}

.section-urgency {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-green));
}

.urgency-box {
    text-align: center;
    color: var(--bg-white);
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.cta-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

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

.section-form h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.order-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--primary-dark);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.section-final-push {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-final-push h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

.section-final-push p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.final-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-final {
    display: block;
    text-align: center;
    padding: 1.2rem 3rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 2.5rem;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--bg-white);
    text-align: center;
}

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

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

.about-content,
.contact-content,
.services-intro {
    padding: 3rem 2rem;
}

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

.about-story h2,
.about-approach h2,
.about-difference h2,
.about-team h2,
.about-commitment h2,
.about-values h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.about-story p,
.about-difference p,
.about-team p,
.about-commitment p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.approach-grid,
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item,
.value {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3,
.value h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.approach-item p,
.value p {
    line-height: 1.7;
}

.about-cta {
    padding: 4rem 2rem;
    background: var(--primary-green);
    text-align: center;
    color: var(--bg-white);
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.services-grid-section {
    padding: 3rem 2rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 2.5rem;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

.component-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.component-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.btn-order {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.service-card.featured {
    position: relative;
    border: 3px solid var(--accent-gold);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.services-guarantee {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.services-guarantee h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantee-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.guarantee-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.guarantee-box p {
    line-height: 1.7;
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--primary-green);
    text-align: center;
    color: var(--bg-white);
}

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

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

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.contact-item p {
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-support,
.contact-orders {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-support h3,
.contact-orders h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-support p,
.contact-orders p {
    line-height: 1.7;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 46, 0.9);
    color: var(--bg-white);
    padding: 1.5rem;
    text-align: center;
}

.contact-quick-links {
    margin-top: 2rem;
}

.contact-quick-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-quick-links ul {
    list-style: none;
}

.contact-quick-links li {
    margin-bottom: 0.8rem;
}

.contact-faq {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.contact-faq h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-dark);
}

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

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.faq-item p {
    line-height: 1.7;
}

.contact-cta {
    padding: 4rem 2rem;
    background: var(--primary-green);
    text-align: center;
    color: var(--bg-white);
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--bg-light);
}

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

.cookie-table th {
    background: var(--primary-green);
    color: var(--bg-white);
    font-weight: 600;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

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

.order-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    text-align: center;
}

.order-details p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

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

.step {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.step p {
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.intro-large {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

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

    .story-block {
        flex-direction: row;
        align-items: center;
    }

    .story-image {
        flex: 1;
    }

    .story-text {
        flex: 1;
    }

    .cost-grid {
        flex-direction: row;
    }

    .insight-layout {
        flex-direction: row;
        align-items: center;
    }

    .insight-text {
        flex: 1;
    }

    .insight-image {
        flex: 1;
    }

    .feature-blocks {
        flex-direction: row;
    }

    .stats-row {
        flex-direction: row;
    }

    .packages-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .package-card {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .guarantee-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .approach-grid,
    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item,
    .value {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .contact-info {
        flex: 1.5;
    }

    .contact-map {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .guarantee-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-box {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .package-card {
        flex: 1 1 calc(33.333% - 1.67rem);
    }
}