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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #4a7c59;
}

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 900px;
    width: calc(100% - 40px);
}

.nav-logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

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

.sticky-btn {
    display: inline-block;
    padding: 16px 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.4);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b7355 0%, #d4a574 100%);
    background-image: url('../images/hero-shoes.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-text-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 58px;
    line-height: 1.2;
    color: var(--bg-white);
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}

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

.hook-text {
    font-size: 24px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.story-reveal {
    display: flex;
    min-height: 600px;
}

.story-image-left {
    flex: 1;
    background: linear-gradient(to right, #d4a574, #8b7355);
    background-image: url('../images/marco-story.jpg');
    background-size: cover;
    background-position: center;
}

.story-content-right {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content-right h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.emphasis {
    font-size: 20px;
    font-style: italic;
    color: var(--secondary-color);
    padding: 20px 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
    margin: 30px 0;
}

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: var(--accent-color);
}

.problem-amplification {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.insight-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-intro {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.insight-reveal {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-img {
    width: 100%;
    border-radius: 8px;
}

.insight-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.trust-building {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--bg-white);
    transform: translateY(60%);
    transition: transform 0.4s ease;
}

.feature-visual:hover .feature-img {
    transform: scale(1.05);
}

.feature-visual:hover .feature-overlay {
    transform: translateY(0);
}

.feature-overlay h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-overlay p {
    font-size: 15px;
    line-height: 1.6;
}

.testimonials-flow {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.testimonial-item {
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--bg-white);
    border-left: 5px solid var(--accent-color);
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-block {
    flex: 1;
    min-width: 280px;
    max-width: 370px;
    padding: 35px;
    background-color: var(--bg-light);
    position: relative;
}

.benefit-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(139, 115, 85, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
}

.benefit-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.collections-preview {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.collections-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.collection-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.collection-img-wrap {
    flex: 1;
    min-width: 300px;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.collection-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collection-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.collection-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.collection-context {
    font-style: italic;
    color: var(--secondary-color);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

.urgency-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.urgency-box {
    text-align: center;
}

.urgency-box h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 30px;
}

.pricing-reveal {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-card.featured .pricing-title {
    color: var(--bg-white);
}

.pricing-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-light);
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.pricing-card.featured .pricing-amount {
    color: var(--bg-white);
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-features li:before {
    content: '✓ ';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-card.featured .pricing-features li:before {
    color: var(--accent-color);
}

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

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

.form-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--secondary-color);
}

.form-privacy {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-privacy label {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.final-cta {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.final-cta p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer {
    background-color: #0f0f0f;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: var(--bg-white);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 180px 20px 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
    color: var(--bg-white);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 300;
}

.about-content,
.legal-content {
    padding: 80px 20px;
}

.about-content h2,
.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content h3,
.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-content p,
.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul,
.legal-content ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 6px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    font-style: italic;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    font-size: 15px;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 15px;
}

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

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 6px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.commitment-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.commitment-final {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--accent-color);
}

.cta-about {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.services-intro-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-detail {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.service-detail.alt-layout {
    background-color: var(--bg-light);
}

.service-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-image-wrap {
    flex: 1;
    min-width: 300px;
}

.service-img {
    width: 100%;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

.service-tagline {
    font-size: 18px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-specs {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.service-specs h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-specs ul {
    list-style: none;
}

.service-specs ul li {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.service-specs ul li:last-child {
    border-bottom: none;
}

.service-price {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

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

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.service-packages {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.package-card {
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    position: relative;
}

.package-card.featured-package {
    border: 3px solid var(--secondary-color);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.package-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.package-price {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

.package-saving {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.package-detail {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
}

.cta-button-outline {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.maintenance-services {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.maintenance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.maintenance-item {
    flex: 1;
    min-width: 350px;
    max-width: 550px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.maintenance-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.maintenance-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

.maintenance-includes {
    list-style: none;
}

.maintenance-includes li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.maintenance-includes li:before {
    content: '✓ ';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
}

.selection-guide {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

.guide-list {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    list-style-position: inside;
}

.guide-list li {
    padding: 10px 0;
    font-size: 16px;
}

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

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

.contact-block {
    flex: 1;
    min-width: 300px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.help-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.help-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

.help-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.location-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.directions {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 6px;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-cta {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.thanks-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--success-color), #5a9168);
    text-align: center;
    color: var(--bg-white);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: var(--bg-white);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
}

.thanks-content {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.thanks-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.next-steps {
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-service-info {
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.service-selected-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 6px;
    text-align: center;
}

.service-selected-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-additional {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.meanwhile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.meanwhile-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.meanwhile-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.meanwhile-item p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
}

.link-arrow:hover {
    color: var(--accent-color);
}

.thanks-reassurance {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.reassurance-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-white);
    border-left: 5px solid var(--success-color);
    text-align: center;
}

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

.reassurance-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .story-image-left {
        min-height: 400px;
    }

    .collection-card {
        flex-direction: column;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
    }

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

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .story-content-right {
        padding: 40px 30px;
    }

    .story-content-right h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .page-hero {
        padding: 140px 20px 60px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .thanks-hero h1 {
        font-size: 28px;
    }
}