:root {
    --primary: #390099;
    --light-shade: #ebe6f5;
    --dark-shade: #25006b;
    --text-color: #25006b;
    --bg-color: #ebe6f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    margin-bottom: 15px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-shade);
}

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

ul {
    list-style-type: none;
}

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

.primary_btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.primary_btn:hover {
    background-color: var(--dark-shade);
    color: var(--white);
}

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

.section_title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section_title p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.navbar-brand img {
    height: 50px;
}

.nav-toggle {
    display: none;
}

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

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

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

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

.hamburger:after {
    top: 8px;
}

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

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

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
}

@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(--white);
        transition: var(--transition);
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

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

    .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 {
    background-color: var(--bg-color);
    padding: 120px 0;
    position: relative;
    background-image: url('../img/fresh_blueberry_smoothie_weight_loss_5.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    text-align: center;
}

.hero_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(57, 0, 153, 0.7);
}

.hero_content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero_content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero_content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.benefits_section {
    padding: 80px 0;
}

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

.benefit_item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--light-shade);
    border-radius: 20px;
    text-align: center;
}

.benefit_item h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

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

.recipe_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.recipe_card {
    background-color: var(--light-shade);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.recipe_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 0, 107, 0.1);
}

.recipe_img {
    height: 200px;
    overflow: hidden;
}

.recipe_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe_card:hover .recipe_img img {
    transform: scale(1.1);
}

.recipe_info {
    padding: 20px;
    text-align: center;
}

.recipe_info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.recipe_info p {
    margin-bottom: 15px;
}

.recipe_btn {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.recipe_btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.recipe_btn:hover:after {
    width: 100%;
}

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

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

.story_item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(37, 0, 107, 0.1);
}

.story_content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.nutritional_facts {
    padding: 80px 0;
}

.nutrition_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.nutrition_item {
    padding: 30px;
    background-color: var(--light-shade);
    border-radius: 20px;
    text-align: center;
}

.nutrition_item h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

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

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

.commercial_item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(37, 0, 107, 0.1);
    text-align: center;
}

.commercial_item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.commercial_item p {
    margin-bottom: 20px;
}

.newsletter_section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
}

.newsletter_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter_content {
    flex: 1 1 400px;
}

.newsletter_content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.newsletter_form {
    flex: 1 1 400px;
    display: flex;
    gap: 15px;
}

.newsletter_form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
}

.newsletter_form button {
    background-color: var(--dark-shade);
}

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

.disclaimer_wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer_wrapper h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.disclaimer_wrapper p {
    font-size: 0.875rem;
}

.footer_section {
    padding: 50px 0 20px;
    background-color: var(--dark-shade);
    color: var(--white);
}

.footer_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer_logo img {
    height: 40px;
}

.footer_links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_links a {
    color: var(--white);
}

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

.footer_contact p {
    margin-bottom: 5px;
}

.footer_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(235, 230, 245, 0.2);
}

@media screen and (max-width: 992px) {
    .hero_content h1 {
        font-size: 2.5rem;
    }

    .section_title h2 {
        font-size: 2rem;
    }
}

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

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

    .footer_links ul {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero_content h1 {
        font-size: 2rem;
    }

    .section_title h2 {
        font-size: 1.75rem;
    }

    .nutrition_wrapper,
    .recipe_grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section Styles */
.cta_section {
    padding: 100px 0;
    background-color: var(--light-shade);
    position: relative;
    overflow: hidden;
}

.cta_wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.cta_text {
    flex: 1;
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.cta_text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta_text p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--dark-shade);
}

.cta_benefits {
    margin-bottom: 35px;
    padding-left: 20px;
}

.cta_benefits li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: var(--dark-shade);
}

.cta_benefits li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.cta_btn {
    padding: 15px 35px;
    font-size: 1.125rem;
    box-shadow: 0 5px 20px rgba(57, 0, 153, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(57, 0, 153, 0.4);
}

.cta_shape {
    position: relative;
    flex: 0 0 300px;
    height: 300px;
}

.shape_circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-shade) 100%);
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shape_dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--light-shade) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
}

/* Contact Section Styles */
.contact_section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.contact_info {
    flex: 1;
}

.contact_card {
    background-color: var(--light-shade);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact_card h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact_card p {
    margin-bottom: 30px;
}

.contact_detail {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

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

.contact_highlight {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(57, 0, 153, 0.1);
    border-radius: 20px;
    text-align: center;
}

.contact_highlight p {
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.contact_form_wrapper {
    flex: 1.5;
}

.contact_form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 0, 107, 0.1);
    position: relative;
}

.contact_form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 80%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
}

.form_group {
    margin-bottom: 25px;
}

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

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-shade);
    border-radius: 9999px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--dark-shade);
    background-color: var(--white);
}

.form_group textarea {
    border-radius: 20px;
    resize: none;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(57, 0, 153, 0.2);
}

.form_terms {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form_terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    accent-color: var(--primary);
}

.form_terms label {
    font-size: 0.9rem;
}

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

.form_btn {
    width: 100%;
    padding: 15px;
    font-size: 1.125rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 0, 153, 0.3);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .cta_text h2 {
        font-size: 2rem;
    }

    .cta_shape {
        flex: 0 0 250px;
        height: 250px;
    }

    .shape_circle {
        width: 230px;
        height: 230px;
    }
}

@media screen and (max-width: 768px) {
    .cta_section {
        padding: 70px 0;
    }

    .cta_wrapper {
        flex-direction: column;
    }

    .cta_text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .cta_benefits {
        display: inline-block;
        text-align: left;
    }

    .cta_shape {
        display: none;
    }

    .contact_wrapper {
        flex-direction: column;
    }

    .contact_info,
    .contact_form_wrapper {
        flex: auto;
    }

    .contact_card {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .cta_text h2 {
        font-size: 1.75rem;
    }

    .cta_benefits li {
        font-size: 0.95rem;
    }

    .contact_form {
        padding: 30px 20px;
    }

    .form_group input,
    .form_group select,
    .form_group textarea {
        padding: 12px 15px;
    }
}

/* About Hero Styles */
.about_hero {
    padding: 120px 0;
    background-color: var(--primary);
    position: relative;
    text-align: center;
}

.about_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-shade) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
}

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

.about_hero_content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about_hero_content p {
    font-size: 1.25rem;
    color: var(--light-shade);
    max-width: 700px;
    margin: 0 auto;
}

/* About Story Styles */
.about_story {
    padding: 80px 0;
}

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

.about_story_content {
    flex: 1;
}

.about_story_content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about_story_image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(37, 0, 107, 0.1);
    position: relative;
}

.about_story_image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

.about_story_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* About Mission Styles */
.about_mission {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.mission_card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 0, 107, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.mission_card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.mission_card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission_card p:last-child {
    margin-bottom: 0;
}

/* About Team Styles */
.about_team {
    padding: 80px 0;
}

.team_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team_member {
    background-color: var(--light-shade);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team_member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 0, 107, 0.1);
}

.team_member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 5px 0 0 5px;
}

.team_member h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.member_title {
    font-weight: 600;
    color: var(--dark-shade);
    margin-bottom: 15px;
    font-style: italic;
}

/* About Approach Styles */
.about_approach {
    padding: 80px 0;
    background-color: var(--light-shade);
}

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

.approach_step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

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

.approach_step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 25px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--primary);
    opacity: 0.3;
}

.step_number {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.step_content {
    flex: 1;
    background-color: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(37, 0, 107, 0.1);
}

.step_content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.step_content p {
    margin: 0;
}

/* About CTA Styles */
.about_cta {
    padding: 80px 0;
}

.about_cta_wrapper {
    background-color: var(--primary);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about_cta_wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.about_cta_wrapper::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.about_cta_wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about_cta_wrapper p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.about_cta_wrapper .primary_btn {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.about_cta_wrapper .primary_btn:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .about_hero_content h1 {
        font-size: 3rem;
    }

    .about_cta_wrapper h2 {
        font-size: 2rem;
    }

    .about_cta_wrapper {
        padding: 50px 30px;
    }
}

@media screen and (max-width: 768px) {
    .about_hero_content h1 {
        font-size: 2.5rem;
    }

    .about_story_wrapper {
        flex-direction: column;
    }

    .about_story_image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .team_wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about_cta_wrapper h2 {
        font-size: 1.75rem;
    }

    .about_cta_wrapper p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .about_hero {
        padding: 80px 0;
    }

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

    .mission_card {
        padding: 30px 20px;
    }

    .about_cta_wrapper {
        padding: 40px 20px;
    }

    .approach_step {
        flex-direction: column;
        gap: 15px;
    }

    .approach_step:not(:last-child)::after {
        left: 25px;
        top: 70px;
        height: calc(100% - 30px);
    }

    .step_number {
        margin: 0 auto;
    }
}

/* Thank You Page Styles */
.thankyou_section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thankyou_card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(37, 0, 107, 0.1);
    position: relative;
}

.thankyou_card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.2;
}

.thankyou_icon {
    width: 100px;
    height: 100px;
    background-color: rgba(57, 0, 153, 0.1);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.check_mark {
    position: relative;
    width: 30px;
    height: 60px;
    border-right: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
    transform: rotate(45deg);
    left: -5px;
    top: -10px;
}

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

.thankyou_message {
    font-size: 1.25rem;
    color: var(--dark-shade);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou_details {
    background-color: var(--light-shade);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.detail_item {
    margin-bottom: 20px;
}

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

.detail_label {
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.thankyou_cta {
    max-width: 500px;
    margin: 0 auto;
}

.thankyou_cta p {
    margin-bottom: 20px;
}

.thankyou_cta .primary_btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-btn {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 25px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .thankyou_section {
        padding: 70px 0;
    }

    .thankyou_card {
        padding: 30px 20px;
    }

    .thankyou_card h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
    .thankyou_card h1 {
        font-size: 1.75rem;
    }

    .thankyou_message {
        font-size: 1.1rem;
    }

    .thankyou_details {
        padding: 20px;
    }
}