/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fffdf7;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #faf8f1;
}

/* Navigation */
.navbar {
    background-color: #fffdf7;
    box-shadow: 0 2px 10px rgba(124, 45, 18, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.nav-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.nav-logo h2 {
    color: #7c2d12;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-logo .logo-link:hover h2 {
    color: #e07a5f;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e07a5f, #7c2d12);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: #e07a5f;
    background-color: rgba(224, 122, 95, 0.08);
}

.nav-link:hover::after {
    width: 60%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #7c2d12;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fffdf7 0%, #faf8f1 100%);
    padding: 50px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #7c2d12;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #e07a5f;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d16849;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    margin-top: 70px;
    
}

.hero-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
 
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

/* Vision Section */
.vision-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.vision-hero-image {
    text-align: center;
    margin-bottom: 30px;
}

.vision-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.15);
    max-height: 300px;
    object-fit: cover;
}

.vision-text h3 {
    color: #7c2d12;
    font-size: 2rem;
    margin-bottom: 20px;
}

.vision-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.vision-text ul {
    list-style: none;
    padding-left: 0;
}

.vision-text li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.vision-text li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e07a5f;
    font-weight: bold;
}



/* Step Details */
.step-details {
    margin-top: 20px;
    padding: 20px;
    background: rgba(250, 248, 241, 0.6);
    border-radius: 10px;
    border-left: 3px solid #e07a5f;
}

.step-details p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.step-details strong {
    color: #7c2d12;
    font-weight: 600;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.step-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #2d2d2d;
    line-height: 1.5;
}

.step-details li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e07a5f;
    font-weight: bold;
}

.step-details em {
    display: block;
    text-align: center;
    font-style: italic;
    color: #7c2d12;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 253, 247, 0.8);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(124, 45, 18, 0.1);
    transition: transform 0.3s ease;
}

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

.step-number {
    background-color: #7c2d12;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(124, 45, 18, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #e07a5f;
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #7c2d12;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.4;
}

.pricing-bonus {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, rgba(124, 45, 18, 0.1) 100%);
    border-radius: 8px;
    border-left: 3px solid #e07a5f;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-bonus strong {
    color: #7c2d12;
}

.price {
    font-size: 3rem;
    color: #e07a5f;
    font-weight: bold;
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-btn {
    display: inline-block;
    background-color: #e07a5f;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pricing-btn:hover {
    background-color: #d16849;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(124, 45, 18, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #7c2d12;
    display: block;
    margin-bottom: 5px;
}

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

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #7c2d12;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Contact Details */
.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(250, 248, 241, 0.7);
    border-radius: 12px;
    border-left: 4px solid #e07a5f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(224, 122, 95, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: #7c2d12;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text span {
    display: block;
    color: #2d2d2d;
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-text small {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-benefits {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.05) 0%, rgba(224, 122, 95, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(224, 122, 95, 0.2);
}

.contact-benefits h4 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    padding: 8px 0;
    color: #2d2d2d;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2d2d2d;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.submit-btn {
    background-color: #e07a5f;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #d16849;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7c2d12 0%, #a0472a 100%);
    color: white;
    padding: 25px;
    z-index: 10000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(120%) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

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

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

.cookie-link {
    color: #e07a5f;
    text-decoration: underline;
}

.btn-accept {
    background-color: #e07a5f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept:hover {
    background-color: #d16849;
}

/* Footer */
.footer {
    background-color: #7c2d12;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #e07a5f;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e07a5f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #a0472a;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-icon {
    width: 40px;
    height: 40px;
}

h2 {
    font-size: 2.5rem;
    color: #7c2d12;
    text-align: center;
    margin: 0;
    font-weight: bold;
}

/* Motivation Section */
.motivation-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.motivation-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 25px;
}

.motivation-quote {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.05) 0%, rgba(224, 122, 95, 0.05) 100%);
    border-radius: 15px;
    border-left: 5px solid #e07a5f;
}

.motivation-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #7c2d12;
    margin: 0;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

.motivation-details {
    margin-top: 20px;
    padding: 20px;
    background: rgba(250, 248, 241, 0.8);
    border-radius: 10px;
    border-left: 3px solid #e07a5f;
}

.motivation-details p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #2d2d2d;
}

.motivation-details strong {
    color: #7c2d12;
}

/* Coaching Motivation */
.coaching-motivation {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.08) 0%, rgba(124, 45, 18, 0.08) 100%);
    border-radius: 15px;
    border: 1px solid rgba(224, 122, 95, 0.2);
}

.coaching-motivation p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.coaching-motivation em {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    color: #7c2d12;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 253, 247, 0.8);
    border-radius: 10px;
}

/* Resources Motivation */
.resources-motivation {
    margin: 30px 0;
}

.resources-motivation p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.resources-quote {
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.06) 0%, rgba(224, 122, 95, 0.06) 100%);
    border-radius: 15px;
    border-left: 5px solid #7c2d12;
}

.resources-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #7c2d12;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.resources-quote small {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #e07a5f;
    font-weight: 500;
}

/* Motivation Section */
.motivation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.motivation-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(124, 45, 18, 0.1);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.motivation-card h3 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Methods Section */
.methods-content {
    margin-top: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(124, 45, 18, 0.1);
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateX(10px);
}

.method-icon {
    flex-shrink: 0;
}

.method-icon img {
    width: 80px;
    height: 80px;
}

.method-text h3 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.method-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #2d2d2d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(124, 45, 18, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(124, 45, 18, 0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #fffdf7;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Active Navigation */
.nav-link.active {
    color: #e07a5f;
    font-weight: 600;
    background-color: rgba(224, 122, 95, 0.12);
}

.nav-link.active::after {
    width: 80%;
    background: linear-gradient(90deg, #e07a5f, #7c2d12);
}

/* Hero Description */
.hero-description {
    margin: 25px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2d2d2d;
    opacity: 0.9;
}

/* Vision Extended */
.vision-extended {
    margin: 25px 0;
    padding: 20px;
    background: rgba(224, 122, 95, 0.05);
    border-radius: 10px;
    border-left: 4px solid #e07a5f;
}

.vision-extended p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 122, 95, 0.3);
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
}

.hero-feature span {
    color: #7c2d12;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Vision Benefits */
.vision-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(250, 248, 241, 0.5);
    border-radius: 10px;
    border-left: 4px solid #e07a5f;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #7c2d12;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-content p {
    margin: 0;
    line-height: 1.5;
}

/* Coaching Section */
.coaching-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #2d2d2d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-features {
    margin-top: 40px;
}

.feature-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(124, 45, 18, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 45, 18, 0.15);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-content h3 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.feature-expanded {
    margin: 20px 0;
    padding: 20px;
    background: rgba(250, 248, 241, 0.7);
    border-radius: 10px;
    border-left: 4px solid #e07a5f;
}

.feature-expanded p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

.feature-expanded strong {
    color: #7c2d12;
}

.feature-quote {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.05) 0%, rgba(224, 122, 95, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #7c2d12;
    text-align: center;
}

.feature-quote em {
    font-size: 1.1rem;
    color: #7c2d12;
    line-height: 1.6;
    font-weight: 500;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.feature-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e07a5f;
    font-weight: bold;
}

/* Success Stories Section */
.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #2d2d2d;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 45, 18, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

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

.story-content {
    padding: 30px;
}

.story-content h3 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.story-quote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #2d2d2d;
    font-size: 1.05rem;
}

.story-author {
    margin-bottom: 20px;
}

.story-author strong {
    color: #7c2d12;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.story-author span {
    color: #666;
    font-size: 0.9rem;
}

.story-results {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.result-item {
    text-align: center;
    flex: 1;
    padding: 15px;
    background: #faf8f1;
    border-radius: 8px;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e07a5f;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.85rem;
    color: #7c2d12;
    font-weight: 500;
}

/* Resources Section */
.resources-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #2d2d2d;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.resource-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(124, 45, 18, 0.1);
    transition: transform 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #faf8f1;
}

.category-icon {
    width: 40px;
    height: 40px;
}

.category-header h3 {
    color: #7c2d12;
    margin: 0;
    font-size: 1.3rem;
}

.resource-list {
    space-y: 20px;
}

.resource-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #faf8f1;
    border-radius: 10px;
    border-left: 4px solid #e07a5f;
}

.resource-item h4 {
    color: #7c2d12;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.resource-item p {
    margin: 0;
    line-height: 1.5;
    color: #2d2d2d;
}

/* Gallery Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fffdf7;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10001;
}

.modal-close {
    background: rgba(124, 45, 18, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(224, 122, 95, 0.9);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 400px;
}

.modal-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 500px;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    height: 550px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.2);
}

.modal-nav {
    background: rgba(124, 45, 18, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.modal-nav:hover {
    background: rgba(224, 122, 95, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-footer {
    padding: 30px;
    background: #faf8f1;
    text-align: center;
}

.modal-footer h3 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-footer p {
    color: #2d2d2d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.modal-counter {
    background: #e07a5f;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Gallery Item Cursor */
.gallery-item {
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fffdf7;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-banner {
        margin-top: 60px;
    }
    
    .hero-banner-image {
        max-height: 250px;
    }
    
    .vision-content {
        gap: 30px;
    }
    
    .vision-main-image {
        max-height: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-icon {
        width: 30px;
        height: 30px;
    }
    
    .motivation-grid {
        grid-template-columns: 1fr;
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .method-icon img {
        width: 60px;
        height: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .nav-logo .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-feature {
        padding: 10px 15px;
    }
    
    .hero-feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
    }
    
    .feature-block {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .feature-icon img {
        width: 50px;
        height: 50px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-results {
        flex-direction: column;
        gap: 10px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .category-icon {
        width: 30px;
        height: 30px;
    }
    
    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        border-radius: 15px;
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn-accept {
        width: 100%;
        padding: 12px;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        width: auto;
        margin: 10px;
    }
    
    .modal-body {
        padding: 15px;
        min-height: 300px;
    }
    
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-footer {
        padding: 20px;
    }
    
    .modal-footer h3 {
        font-size: 1.2rem;
    }
    
    .modal-footer p {
        font-size: 1rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .hero-description {
        margin: 20px 0;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .vision-extended {
        margin: 20px 0;
        padding: 15px;
    }
    
    .vision-extended p {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-benefits {
        padding: 20px;
        margin-top: 30px;
    }
    
    .contact-benefits h4 {
        font-size: 1.1rem;
    }
    
    .contact-benefits li {
        font-size: 0.9rem;
    }
    
    .motivation-intro p {
        font-size: 1.1rem;
    }
    
    .motivation-quote {
        padding: 20px;
        margin: 20px 0;
    }
    
    .motivation-quote blockquote {
        font-size: 1.1rem;
    }
    
    .motivation-details {
        padding: 15px;
        margin-top: 15px;
    }
    
    .coaching-motivation {
        padding: 20px;
        margin: 20px 0;
    }
    
    .coaching-motivation em {
        font-size: 1rem;
        padding: 12px;
    }
    
    .resources-motivation p {
        font-size: 1rem;
    }
    
    .resources-quote {
        padding: 20px;
        margin: 20px 0;
    }
    
    .resources-quote blockquote {
        font-size: 1.1rem;
    }
    
    .resources-quote small {
        font-size: 0.9rem;
    }
    
    .step-details {
        padding: 15px;
        margin-top: 15px;
    }
    
    .step-details p {
        font-size: 0.95rem;
    }
    
    .step-details em {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .pricing-subtitle {
        font-size: 0.85rem;
    }
    
    .pricing-bonus {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .feature-expanded {
        padding: 15px;
        margin: 15px 0;
    }
    
    .feature-expanded p {
        font-size: 1rem;
    }
    
    .feature-quote {
        padding: 15px;
        margin: 20px 0;
    }
    
    .feature-quote em {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}