:root {
    --primary-color: #073b4c;
    --light-shade: #e6ebee;
    --dark-shade: #052633;
    --accent-color: #ff7b00;
    --text-color: #052633;
    --background-color: #ffffff;
    --section-padding: 80px 0;
}

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

body {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

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

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: var(--section-padding);
}

.button_primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-shade);
    border-radius: 9999px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.button_primary:hover {
    background-color: var(--accent-color);
    color: var(--light-shade);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section_title {
    text-align: center;
    margin-bottom: 50px;
}

.section_title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section_title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navbar-brand img {
    max-height: 50px;
    border-radius: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero_section {
    background-color: var(--light-shade);
    padding: 120px 0;
}

.hero_content {
    max-width: 600px;
}

.hero_section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero_image {
    max-width: 500px;
}

.about_section {
    background-color: var(--background-color);
}

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

.about_text {
    flex: 1;
}

.about_image {
    flex: 1;
}

.nutrition_section {
    background-color: var(--light-shade);
}

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

.comparison_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.comparison_table th,
.comparison_table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison_table th {
    background-color: var(--primary-color);
    color: var(--light-shade);
}

.comparison_table tr:nth-child(even) {
    background-color: rgba(7, 59, 76, 0.05);
}

.recipes_section {
    background-color: var(--background-color);
}

.difficulty_tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab_button {
    padding: 10px 25px;
    background-color: var(--light-shade);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab_button.active {
    background-color: var(--primary-color);
    color: var(--light-shade);
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

.recipe_card {
    display: flex;
    gap: 30px;
    background-color: var(--light-shade);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.recipe_image {
    flex: 1;
    max-width: 300px;
}

.recipe_image img {
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.recipe_details {
    flex: 2;
    padding: 30px;
}

.recipe_info {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 20px;
}

.recipe_instructions {
    padding-top: 20px;
    border-top: 1px solid rgba(7, 59, 76, 0.1);
}

.detox_section {
    background-color: var(--light-shade);
}

.detox_plan {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.detox_day {
    flex: 1;
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.meal {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(7, 59, 76, 0.1);
}

.meal:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detox_image {
    max-width: 600px;
    margin: 0 auto;
}

.harvesting_section {
    background-color: var(--background-color);
}

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

.harvesting_image {
    flex: 1;
}

.harvesting_tips {
    flex: 1;
}

.tip {
    margin-bottom: 30px;
}

.tip:last-child {
    margin-bottom: 0;
}

.alternative_section {
    background-color: var(--light-shade);
}

.alternative_uses {
    display: flex;
    gap: 30px;
}

.use_card {
    flex: 1;
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.use_details {
    padding: 30px;
}

.consultation_section {
    background-color: var(--background-color);
}

.consultation_options {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.option {
    flex: 1;
    background-color: var(--light-shade);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 15px;
}

.footer_area {
    background-color: var(--primary-color);
    color: var(--light-shade);
    padding: 80px 0 30px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer_widget {
    flex: 1;
}

.footer_widget h3 {
    color: var(--light-shade);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 15px;
}

.footer_links a {
    color: var(--light-shade);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer_links a:hover {
    opacity: 1;
    color: var(--light-shade);
}

.contact_info {
    list-style: none;
}

.contact_info li {
    margin-bottom: 15px;
}

.contact_info span {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(230, 235, 238, 0.1);
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero_section .container,
    .about_content,
    .harvesting_content,
    .alternative_uses,
    .consultation_options,
    .detox_plan,
    .footer_top {
        flex-direction: column;
    }

    .recipe_card {
        flex-direction: column;
    }

    .recipe_image {
        max-width: 100%;
    }

    .recipe_image img {
        width: 100%;
    }

    .section_title {
        margin-bottom: 30px;
    }

    .hero_section {
        padding: 80px 0;
    }

    .section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .about_image,
    .harvesting_image {
        margin-bottom: 30px;
    }

    .use_card {
        margin-bottom: 30px;
    }

    .option {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: block;
    }
}

/* Stiluri pentru Secțiunea CTA - Seasonal Offer */
.seasonal_offer_section {
    background: linear-gradient(145deg, var(--primary-color) 0%, #0a5570 100%);
    color: var(--light-shade);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.seasonal_offer_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.seasonal_offer_wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.seasonal_badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-shade);
    padding: 8px 15px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    transform: rotate(-2deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.seasonal_offer_content h2 {
    color: var(--light-shade);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.offer_highlight {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.offer_benefits {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.offer_benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.offer_benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.offer_price {
    margin: 30px 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.old_price {
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 15px;
}

.new_price {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-shade);
}

.offer_limited {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.8;
}

.button_cta {
    font-size: 1.2rem;
    padding: 15px 35px;
    background: var(--accent-color);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.button_cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    background-color: #ff8c21;
}

/* Stiluri pentru Secțiunea de Contact */
.contact_section {
    background-color: var(--light-shade);
    padding: 100px 0;
}

.contact_section .section_title {
    margin-bottom: 60px;
}

.contact_section .subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.contact_wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.contact_info_side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact_form_side {
    flex: 1.3;
}

.contact_info_card {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: calc(100% - 30px - 170px);
}

.contact_info_card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact_info_card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact_info_item {
    margin-top: 20px;
}

.contact_label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact_value {
    display: block;
    color: var(--text-color);
    opacity: 0.9;
}

.contact_guarantee {
    background-color: #f2f9ff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--accent-color);
    position: relative;
    height: 170px;
}

.guarantee_badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 123, 0, 0.3);
}

.contact_guarantee p {
    margin-top: 20px;
    font-style: italic;
}

/* Stiluri pentru Formular */
.contact_form {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.form_group {
    margin-bottom: 25px;
}

.form_group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.input_wrapper {
    position: relative;
    border-radius: 9999px;
    overflow: hidden;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form input[type="tel"],
.contact_form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(7, 59, 76, 0.1);
    border-radius: 9999px;
    font-size: 1rem;
    font-family: 'Lora', serif;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: rgba(230, 235, 238, 0.3);
}

.contact_form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(7, 59, 76, 0.1);
    border-radius: 20px;
    font-size: 1rem;
    font-family: 'Lora', serif;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: rgba(230, 235, 238, 0.3);
    resize: vertical;
}

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(7, 59, 76, 0.1);
    background-color: white;
}

.contact_form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23073b4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form_consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form_consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(7, 59, 76, 0.3);
    border-radius: 5px;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form_consent input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form_consent input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form_consent label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.form_consent a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form_submit {
    text-align: center;
    margin-top: 35px;
}

.form_submit .button_primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Stiluri Responsive */
@media screen and (max-width: 768px) {
    .seasonal_offer_wrapper {
        padding: 30px;
    }

    .seasonal_offer_content h2 {
        font-size: 1.8rem;
    }

    .offer_price {
        margin: 20px 0;
    }

    .old_price {
        font-size: 1rem;
    }

    .new_price {
        font-size: 1.8rem;
    }

    .contact_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact_info_card {
        height: auto;
    }

    .contact_guarantee {
        height: auto;
    }

    .form_submit .button_primary {
        width: 100%;
    }

    .seasonal_offer_section,
    .contact_section {
        padding: 70px 0;
    }

    .contact_form {
        padding: 25px;
    }
}

.cookie_disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--light-shade);
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie_disclaimer.show {
    transform: translateY(0);
}

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

.cookie_text {
    flex: 1;
    padding-right: 30px;
}

.cookie_text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie_text a {
    color: var(--light-shade);
    text-decoration: underline;
    font-weight: 600;
}

.cookie_buttons {
    display: flex;
    gap: 10px;
}

.cookie_button {
    padding: 8px 20px;
    border: none;
    border-radius: 9999px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie_button.accept {
    background-color: var(--accent-color);
    color: var(--light-shade);
}

.cookie_button.decline {
    background-color: transparent;
    color: var(--light-shade);
    border: 1px solid var(--light-shade);
}

.cookie_button.accept:hover {
    background-color: #ff8c21;
}

.cookie_button.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .cookie_content {
        flex-direction: column;
        padding: 15px;
    }

    .cookie_text {
        padding-right: 0;
        padding-bottom: 15px;
        text-align: center;
    }

    .cookie_buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Stiluri pentru Pagina About */
.about_hero_section {
    background-color: var(--primary-color);
    color: var(--light-shade);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.about_hero_content {
    position: relative;
    z-index: 1;
}

.about_hero_content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light-shade);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about_subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about_story_section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about_story_wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.story_image {
    text-align: center;
    margin-bottom: 20px;
}

.story_image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story_text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.story_text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.story_text h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story_text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.values_list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.values_list li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.values_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.values_list li strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.team_info {
    background-color: var(--light-shade);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-color);
}

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

.testimonials_section {
    background-color: var(--light-shade);
    padding: 80px 0;
}

.testimonials_wrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial_card {
    flex: 1;
    background-color: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial_content {
    padding: 30px;
    flex: 1;
    position: relative;
}

.testimonial_content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(7, 59, 76, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial_content p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial_author {
    background-color: rgba(7, 59, 76, 0.03);
    padding: 20px 30px;
    border-top: 1px solid rgba(7, 59, 76, 0.05);
}

.author_name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* Media Queries pentru Responsivitate */
@media screen and (max-width: 768px) {
    .about_hero_section {
        padding: 70px 0;
    }

    .about_hero_content h1 {
        font-size: 2.2rem;
    }

    .about_subtitle {
        font-size: 1.1rem;
    }

    .story_text h2 {
        font-size: 1.8rem;
    }

    .testimonials_wrapper {
        flex-direction: column;
    }
}

/* Stiluri pentru Pagina Thankyou */
.thankyou_section {
    padding: 100px 0;
    background-color: var(--light-shade);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou_wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    text-align: center;
}

.thankyou_icon {
    margin-bottom: 30px;
}

.success_checkmark {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
}

.check_circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #F8FAF5;
    border: 4px solid var(--accent-color);
    box-sizing: border-box;
}

.check_stem {
    position: absolute;
    width: 5px;
    height: 30px;
    background-color: var(--accent-color);
    left: 36px;
    top: 20px;
    transform: rotate(45deg);
    animation: stem-appear 0.3s ease-in-out 0.3s forwards;
    opacity: 0;
}

.check_kick {
    position: absolute;
    width: 20px;
    height: 5px;
    background-color: var(--accent-color);
    left: 23px;
    top: 45px;
    transform: rotate(45deg);
    animation: kick-appear 0.3s ease-in-out 0.4s forwards;
    opacity: 0;
}

@keyframes stem-appear {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

@keyframes kick-appear {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.thankyou_content {
    width: 100%;
}

.thankyou_content h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.thankyou_content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 20px;
}

.next_steps {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-shade);
    border-radius: 12px;
    text-align: left;
}

.next_steps h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.next_steps h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.next_steps_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next_steps_list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.next_steps_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.bonus_content {
    margin: 40px 0;
    padding: 30px;
    background-color: #FFF8F0;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    text-align: left;
}

.bonus_content h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.return_home {
    margin-top: 40px;
}

.return_home .button_primary {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Media Queries pentru Responsivitate */
@media screen and (max-width: 768px) {
    .thankyou_section {
        padding: 60px 0;
    }

    .thankyou_wrapper {
        padding: 30px;
        margin: 0 15px;
    }

    .thankyou_content h1 {
        font-size: 1.8rem;
    }

    .thankyou_content p {
        font-size: 1rem;
    }

    .next_steps, .bonus_content {
        padding: 20px;
    }
}