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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Color Variables */
:root {
    --primary-white: #ffffff;
    --light-gray: #f5f5f5;
    --beige: #f5f5dc;
    --coral: #ff7f7f;
    --purple: #8a2be2;
    --dark-gray: #333333;
    --medium-gray: #666666;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark-gray);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: block;
    max-width: 400px;
    border-radius: 10px;
    border-left: 2px solid var(--coral);
    box-shadow: 0 5px 20px #ff7f7f(0,0,0,0.3);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.cookie-link {
    color: var(--coral);
    text-decoration: underline;
}

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

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

.cookie-popup.hidden {
    display: none;
}

/* Header */
.header {
    background-color: var(--primary-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-logo h1 {
    color: var(--purple);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--coral);
}

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

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

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--beige) 0%, var(--light-gray) 100%);
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.hero-img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.placeholder-image {
    background-color: var(--light-gray);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--medium-gray);
    font-style: italic;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--coral);
    color: white;
    border-color: var(--coral);
}

.btn-primary:hover {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.btn-secondary {
    background-color: transparent;
    color: var(--purple);
    border-color: var(--purple);
}

.btn-secondary:hover {
    background-color: var(--purple);
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section Enhancements */
.hero-slogan {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--coral);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.main-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.section-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: var(--coral);
    transform: translateY(-5px);
}

.section-card h3 {
    color: var(--purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--coral);
}

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

.article-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-card h3 {
    color: var(--purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-link {
    color: var(--coral);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--purple);
}

/* Pricing */
.pricing {
    background-color: var(--beige);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

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

.pricing-card h3 {
    color: var(--purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Tools Section */
.tools {
    background-color: var(--beige);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tool-card {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.tool-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.tool-card h3 {
    color: var(--purple);
    margin-bottom: 1.5rem;
    text-align: center;
}

.checklist {
    margin: 1.5rem 0;
}

.checklist-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checklist-item strong {
    color: var(--purple);
}

.checklist-item:last-child {
    border-bottom: none;
}

.tool-card .btn-secondary {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

/* Motivation Section */
.motivation {
    background-color: var(--light-gray);
}

.motivation-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.inspiration-stories h3,
.quotes-section h3,
.media-section h3 {
    color: var(--purple);
    margin-bottom: 2rem;
    text-align: center;
}

.story-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--coral);
}

.story-card h4 {
    color: var(--purple);
    margin-bottom: 1rem;
}

.quote-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.quote-card blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-card cite {
    color: var(--coral);
    font-weight: 500;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.media-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.media-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.media-card h4 {
    color: var(--purple);
    margin-bottom: 1rem;
}

.media-link {
    color: var(--coral);
    text-decoration: none;
    font-weight: 500;
}

.media-link:hover {
    color: var(--purple);
}

/* About Section */
.about {
    background-color: var(--beige);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main {
    text-align: center;
    margin-bottom: 3rem;
}

.about-main h3 {
    color: var(--purple);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.about-main p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.values-section {
    margin-bottom: 3rem;
}

.values-section h3 {
    color: var(--purple);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.value-card h4 {
    color: var(--purple);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.mission-section {
    text-align: center;
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-section h3 {
    color: var(--purple);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.mission-section p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--purple);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.contact-item strong {
    color: var(--coral);
}

.contact-item a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--coral);
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    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: var(--coral);
}

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

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--coral);
    margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-popup {
        bottom: 10px;
        right: 10px;
        max-width: 300px;
        padding: 15px;
    }
    
    .cookie-content {
        gap: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .main-sections {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card,
    .pricing-card,
    .testimonial-card,
    .team-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success Message */
.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    display: none;
}

.success-message.show {
    display: block;
}