/* Base Styles */
:root {
    --primary-color: #06d6a0;
    --light-shade: #e6faf5;
    --dark-shade: #048a65;
    --text-color: #333;
}

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

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

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

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

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

section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-shade);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--dark-shade);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Header Styles */
.main_menu {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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(--dark-shade);
    position: relative;
    transition: all 0.3s ease;
}

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

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

.hamburger:after {
    top: 8px;
}

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

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

.nav-link {
    color: var(--dark-shade);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

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

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

/* Hero Section */
.hero-section {
    height: 70vh;
    background-image: url('../img/traditional_Turkish_pottery_making_1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

/* Workshop Section */
.workshop-section {
    background-color: var(--light-shade);
}

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

.workshop-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.workshop-item:hover {
    transform: translateY(-10px);
}

.workshop-image {
    height: 250px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workshop-item:hover .workshop-image img {
    transform: scale(1.1);
}

.workshop-info {
    padding: 20px;
}

.workshop-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Products Section */
.products-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-info .price {
    font-weight: 700;
    color: var(--dark-shade);
    margin: 15px 0;
}

/* Courses Section */
.courses-section {
    background-color: var(--light-shade);
}

.courses-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.course-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-image {
    height: 250px;
    overflow: hidden;
}

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

.course-info {
    padding: 25px;
}

.course-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.course-info ul {
    margin: 15px 0 15px 20px;
}

.course-info ul li {
    margin-bottom: 5px;
}

.course-info .price {
    font-weight: 700;
    color: var(--dark-shade);
    margin: 15px 0;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

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

/* Footer */
.footer {
    background-color: var(--dark-shade);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

.btn-cookie-info {
    color: var(--dark-shade);
    text-decoration: none;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept:hover {
    background-color: var(--dark-shade);
}

/* Mobile Navigation */
@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: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .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;
    }

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

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

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

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

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .about-text h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        height: 80vh;
    }

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

    .about-content, .contact-content {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .cookie-notice .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(120deg, var(--light-shade) 30%, #fff 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(6, 214, 160, 0.05);
    top: -150px;
    right: -150px;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(6, 214, 160, 0.05);
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

.cta-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    padding-right: 40px;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark-shade);
}

.cta-features {
    list-style: none;
    margin-bottom: 30px;
}

.cta-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.cta-features li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    left: 0;
    top: 9px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(6, 214, 160, 0.3);
}

.btn-cta:hover {
    background-color: var(--dark-shade);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 138, 101, 0.3);
}

.cta-decoration {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
}

.ceramic-plate {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-shade) 0%, #fff 40%, var(--light-shade) 100%);
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    top: 50px;
    left: 50px;
    z-index: 3;
}

.ceramic-plate::before {
    content: '';
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.ceramic-plate::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

.ceramic-vase {
    position: absolute;
    width: 100px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-shade) 100%);
    border-radius: 50px 50px 25px 25px;
    bottom: 50px;
    right: 20px;
    z-index: 2;
    overflow: hidden;
}

.ceramic-vase::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 30px;
    background-color: var(--dark-shade);
    border-radius: 40px 40px 0 0;
    top: -15px;
    left: 10px;
}

.ceramic-vase::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 120px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    top: 20px;
    left: 10px;
    border-radius: 30px;
}

/* Contact Section Styles */
.contact-section {
    padding: 90px 0;
    background-color: #fff;
}

.contact-section .section-title p {
    max-width: 600px;
    margin: 15px auto 0;
    color: var(--dark-shade);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--light-shade);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.icon-location, .icon-phone, .icon-time {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon-location::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-location::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 8px;
    background-color: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-phone::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-phone::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    top: 6px;
    left: 8px;
}

.icon-time::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-time::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 8px;
    background-color: #fff;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-shade);
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.ceramic-form-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-shade) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    z-index: 1;
}

.ceramic-form-decoration::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    bottom: -30px;
    left: -30px;
    opacity: 0.2;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--dark-shade);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-shade);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(6, 214, 160, 0.2);
}

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

.btn-submit {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--dark-shade);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 138, 101, 0.2);
}

.form-submit {
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .cta-content {
        flex-direction: column;
    }

    .cta-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

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

    .cta-decoration {
        flex: 0 0 250px;
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .contact-info-item {
        padding: 20px;
    }

    .contact-form {
        padding: 30px;
    }

    .ceramic-form-decoration {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .cta-section {
        padding: 70px 0;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-decoration {
        display: none;
    }
}

/* About Page Specific Styles */

/* About Hero Section */
.about-hero-section {
    height: 60vh;
    background-image: url('../img/traditional_Turkish_pottery_making_1.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-hero-content h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-top: 25px;
}

/* Our Story Section */
.our-story-section {
    padding: 90px 0;
    background-color: #fff;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.2;
}

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

.story-content:hover .story-image img {
    transform: scale(1.05);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-shade);
    position: relative;
    padding-bottom: 15px;
}

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

.story-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Our Process Section */
.our-process-section {
    padding: 90px 0;
    background-color: var(--light-shade);
    position: relative;
    overflow: hidden;
}

.our-process-section::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(6, 214, 160, 0.1);
    top: -125px;
    right: -125px;
}

.process-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.process-text {
    flex: 1;
    min-width: 300px;
}

.process-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.step-number {
    flex: 0 0 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.step-info h4 {
    margin-bottom: 5px;
    color: var(--dark-shade);
}

.process-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--primary-color) 100%);
    opacity: 0.2;
    z-index: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Our Values Section */
.our-values-section {
    padding: 90px 0;
    background-color: #fff;
}

.values-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.values-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.3;
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-text {
    flex: 1;
    min-width: 300px;
}

.values-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-shade);
    position: relative;
    padding-bottom: 15px;
}

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

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

.values-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

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

.values-list h4 {
    margin-bottom: 5px;
    color: var(--dark-shade);
    font-size: 1.2rem;
}

.values-text .btn-primary {
    margin-top: 15px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .about-hero-section {
        height: 50vh;
    }

    .about-hero-content h1 {
        font-size: 2.8rem;
    }

    .story-text h3, .process-text h3, .values-text h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .about-hero-section {
        height: 40vh;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

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

    .our-story-section, .our-process-section, .our-values-section {
        padding: 60px 0;
    }

    .story-content, .process-content, .values-content {
        flex-direction: column;
    }

    .story-text, .process-text, .values-text {
        order: 2;
    }

    .story-image, .process-image, .values-image {
        order: 1;
        margin-bottom: 30px;
    }

    .process-step:hover {
        transform: none;
    }
}


/* Thank You Page Specific Styles */
.thank-you-section {
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--light-shade);
    position: relative;
    overflow: hidden;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.thank-you-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.pottery-wheel {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 15px solid rgba(6, 214, 160, 0.1);
    top: 10%;
    left: 15%;
    animation: rotate 20s linear infinite;
}

.pottery-wheel::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 8px solid rgba(6, 214, 160, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pottery-wheel::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(6, 214, 160, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ceramic-pattern {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 5%;
    right: 10%;
    opacity: 0.1;
    background: radial-gradient(circle, var(--primary-color) 5%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}

.ceramic-pattern::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ceramic-pattern::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    color: #fff;
}

.thank-you-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 20px;
    border-bottom: 5px solid #fff;
    border-left: 5px solid #fff;
    transform: rotate(-45deg);
    top: 38px;
    left: 28px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-shade);
}

.timer {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Cookie Disclaimer Styles */
.cookie-disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text p {
    margin: 0;
    color: var(--dark-shade);
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background-color: var(--dark-shade);
    transform: translateY(-3px);
}

.btn-cookie-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--dark-shade);
}

.btn-cookie-secondary:hover {
    background-color: var(--light-shade);
}

.cookie-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-shade);
    top: -15px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-decoration::before,
.cookie-decoration::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.cookie-decoration::before {
    width: 10px;
    height: 10px;
    top: 8px;
    left: 10px;
}

.cookie-decoration::after {
    width: 6px;
    height: 6px;
    bottom: 10px;
    right: 12px;
}

@media screen and (max-width: 768px) {
    .thank-you-content {
        padding: 40px 20px;
    }

    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}