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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF8E7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    background-color: #6F4E37;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #FFD700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-toggle {
    display: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
    padding-bottom: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6F4E37 0%, #8B6F47 100%);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
}

.hero-decoration.left {
    top: 2.5rem;
    left: 2.5rem;
}

.hero-decoration.right {
    bottom: 2.5rem;
    right: 2.5rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #FFD700;
    color: #6F4E37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #6F4E37;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #5A3E2B;
    transform: scale(1.05);
}

.btn-book {
    background-color: #FFD700;
    color: #6F4E37;
    width: 100%;
    text-align: center;
}

.btn-book:hover {
    background-color: #FFC700;
}

.btn-full {
    width: 100%;
}

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

.faq-container {
    max-width: 900px;
}

/* Sections */
.section {
    padding: 4rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 1.5rem;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-paragraph {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-card {
    background: linear-gradient(135deg, #FFF4D9 0%, #FFE6B3 100%);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    font-style: italic;
}

/* Services Section */
.services-section {
    background-color: #FFF8E7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    border-top: 4px solid #FFD700;
}

.service-card.green-border {
    border-top-color: #90EE90;
}

.service-card.brown-border {
    border-top-color: #6F4E37;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.service-title {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 1rem;
}

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #6F4E37;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.service-link:hover {
    color: #FFD700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, #FFF4D9 0%, #FFE6B3 100%);
    padding: 4rem 2rem;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: #6F4E37;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #6F4E37;
    color: white;
    padding: 2rem;
    margin-top: auto;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(90deg, #6F4E37 0%, #8B6F47 100%);
    color: white;
    padding: 4rem 2rem;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.header-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #FFD700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
}

/* Consultation Page */
.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.consultation-card {
    background-color: #FFF8E7;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.consultation-card.green-card {
    border-left-color: #90EE90;
}

.consultation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consultation-title {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 1rem;
}

.consultation-description {
    color: #555;
    margin-bottom: 1rem;
}

.consultation-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.consultation-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #555;
}

.check {
    color: #90EE90;
    margin-right: 0.5rem;
}

.consultation-price {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
}

.price-original {
    font-size: 1.25rem;
    color: #8a8a8a;
    text-decoration: line-through;
}

.price-discounted {
    font-size: 2rem;
    color: #6F4E37;
    font-weight: 700;
}

.how-it-works {
    background: linear-gradient(135deg, #90EE90 0%, #98FB98 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    background-color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-weight: 600;
    color: #6F4E37;
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.9rem;
    color: #6F4E37;
}

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

.cta-box-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-section {
    background-color: #FFF8E7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #6F4E37;
}

/* Books Page */
.my-books-section {
    background: #ffffff;
    padding: 4rem 0;
}

.my-books-section .section-title,
.my-books-section .section-subtitle {
    color: #154406;
}

.my-books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.my-book-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.my-book-card:hover {
    transform: scale(1.05);
}

.my-book-cover {
    background: linear-gradient(135deg, #6F4E37 0%, #8B6F47 100%);
    padding: 2rem;
    text-align: center;
}

.book-cover-icon {
    font-size: 4.5rem;
}

.my-book-content {
    padding: 1.5rem;
}

.book-status {
    display: inline-block;
    background-color: #FFD700;
    color: #6F4E37;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.book-status.progress {
    background-color: #90EE90;
}

.my-book-title {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 0.5rem;
}

.my-book-author {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.my-book-description {
    color: #555;
}

.affiliate-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.book-card {
    background-color: #FFF8E7;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.book-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.book-cover {
    background: linear-gradient(135deg, #6F4E37 0%, #8B6F47 100%);
    text-align: center;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    padding: 1rem;
    overflow: hidden;
}

.book-cover-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-info {
    padding: 1.5rem;
}

.book-title {
    font-size: 1.25rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 0.5rem;
}

.book-author {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.book-description {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.philosophy-section {
    background-color: #FFF8E7;
}

.philosophy-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #90EE90;
    display: flex;
    gap: 1.5rem;
}

.philosophy-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.philosophy-title {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 1rem;
}

.philosophy-text {
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.newsletter-cta {
    background: linear-gradient(90deg, #6F4E37 0%, #8B6F47 100%);
    color: white;
    padding: 4rem 2rem;
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter-title {
    font-size: 2rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #FFD700;
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-heading {
    font-size: 2rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 1.5rem;
}

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

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6F4E37;
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(111, 78, 55, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #FFD700;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.success-message {
    background: linear-gradient(135deg, #90EE90 0%, #98FB98 100%);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-title {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 0.5rem;
}

.success-text {
    color: #6F4E37;
}

.contact-info-box {
    background-color: #FFF8E7;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-intro {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
}

.contact-detail-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-detail-label {
    font-weight: 600;
    color: #6F4E37;
}

.contact-detail-link {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail-link:hover {
    color: #FFD700;
}

.contact-detail-text {
    color: #555;
}

.social-box {
    background: linear-gradient(135deg, #90EE90 0%, #98FB98 100%);
    border-radius: 0.75rem;
    padding: 2rem;
}

.social-title {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #6F4E37;
    margin-bottom: 1rem;
}

.social-description {
    color: #6F4E37;
    margin-bottom: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.social-link:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6F4E37;
}

/* FAQ Section */
.faq-section {
    background-color: #FFF8E7;
}

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

.faq-item {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6F4E37;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.faq-answer {
    color: #555;
    line-height: 1.7;
    margin-left: 2.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        align-items: stretch;
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.75rem;
        cursor: pointer;
        align-self: flex-end;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-menu.open {
        display: flex;
    }

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

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

    .about-grid,
    .services-grid,
    .consultation-grid,
    .steps-grid,
    .testimonials-grid,
    .my-books-grid,
    .books-grid,
    .contact-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .philosophy-box {
        flex-direction: column;
        text-align: center;
    }
}
