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

body {
    font-family: 'Arial', 'Devanagari Sangam MN', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    overflow-x: hidden;
}

.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #d4421a 0%, #ff6b35 100%);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 66, 26, 0.3);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.brand-name {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.nav-link-item {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-item:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

.order-btn-header {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #d4421a;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.order-btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.hero-section-main {
    height: 100vh;
    background: linear-gradient(135deg, rgba(212, 66, 26, 0.9), rgba(255, 107, 53, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="80" cy="60" r="1.5" fill="%23d4421a" opacity="0.1"/><circle cx="40" cy="90" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-floating-spices {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spice-particle {
    position: absolute;
    color: rgba(255, 215, 0, 0.6);
    font-size: 1.5rem;
    animation: floatSpices 8s infinite linear;
}

@keyframes floatSpices {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content-wrapper {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title-main {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    font-weight: bold;
}

.hero-subtitle-text {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-cta-button {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #d4421a;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.stats-section-block {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fef8f3 0%, #fff 100%);
}

.stats-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 66, 26, 0.1);
    transition: all 0.3s ease;
}

.stat-item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 66, 26, 0.2);
}

.stat-number-display {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4421a;
    margin-bottom: 0.5rem;
}

.stat-label-text {
    color: #666;
    font-weight: 500;
}

.specialty-section-wrapper {
    padding: 5rem 2rem;
    background: white;
}

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

.specialty-card-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 66, 26, 0.1);
    transition: all 0.4s ease;
}

.specialty-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 66, 26, 0.2);
}

.specialty-image-wrapper {
    height: 200px;
    overflow: hidden;
}

.specialty-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.specialty-card-item:hover .specialty-image-photo {
    transform: scale(1.1);
}

.specialty-content-area {
    padding: 2rem;
}

.specialty-title-name {
    font-size: 1.5rem;
    color: #d4421a;
    margin-bottom: 1rem;
    font-weight: bold;
}

.specialty-description-text {
    color: #666;
    line-height: 1.6;
}

.products-section-wrapper {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #fff 0%, #fef8f3 100%);
}

.section-container-max {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-heading {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border-radius: 2px;
}

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

.product-card-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 66, 26, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 66, 26, 0.2);
}

.product-image-wrapper {
    height: 250px;
    background: linear-gradient(45deg, #ff6b35, #d4421a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="60" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="90" r="0.5" fill="white" opacity="0.1"/></svg>');
}

.product-details-content {
    padding: 2rem;
}

.product-name-title {
    font-size: 1.5rem;
    color: #d4421a;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.product-description-text {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price-display {
    font-size: 1.5rem;
    color: #d4421a;
    font-weight: bold;
    margin-bottom: 1rem;
}

.add-cart-button {
    width: 100%;
    background: linear-gradient(45deg, #d4421a, #ff6b35);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-cart-button:hover {
    background: linear-gradient(45deg, #ff6b35, #d4421a);
    transform: translateY(-2px);
}

.process-section-area {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #fef8f3 0%, #fff 100%);
}

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-item {
    text-align: center;
    padding: 2rem 1rem;
}

.process-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    box-shadow: 0 8px 25px rgba(212, 66, 26, 0.2);
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-emoji-icon {
    font-size: 2.5rem;
}

.process-step-title {
    font-size: 1.3rem;
    color: #d4421a;
    margin-bottom: 1rem;
    font-weight: bold;
}

.process-step-description {
    color: #666;
    line-height: 1.6;
}

.features-section-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #d4421a 0%, #ff6b35 100%);
    color: white;
}

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

.feature-card-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon-display {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-title-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.testimonials-section-wrapper {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #d4421a 0%, #ff6b35 100%);
    color: white;
}

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

.testimonial-card-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-content-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-details-area {
    text-align: center;
}

.author-name-text {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.author-location-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.rating-stars-display {
    font-size: 0.9rem;
}

.gallery-section-block {
    padding: 5rem 2rem;
    background: white;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item-wrapper {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(212, 66, 26, 0.1);
    transition: all 0.3s ease;
}

.gallery-item-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 66, 26, 0.2);
}

.gallery-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-image-photo {
    transform: scale(1.1);
}

.gallery-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-title-text {
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-section-banner {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    text-align: center;
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-heading {
    font-size: 2.5rem;
    color: #d4421a;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-description-text {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-primary-button, .cta-secondary-button {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary-button {
    background: linear-gradient(45deg, #d4421a, #ff6b35);
    color: white;
}

.cta-secondary-button {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.cta-primary-button:hover, .cta-secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-section-wrapper {
    padding: 5rem 2rem;
    background: #fef8f3;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(212, 66, 26, 0.1);
}

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

.form-label-text {
    display: block;
    margin-bottom: 0.5rem;
    color: #d4421a;
    font-weight: bold;
}

.form-input-field, .form-textarea-field {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-field:focus, .form-textarea-field:focus {
    outline: none;
    border-color: #d4421a;
    box-shadow: 0 0 10px rgba(212, 66, 26, 0.2);
}

.submit-form-button {
    width: 100%;
    background: linear-gradient(45deg, #d4421a, #ff6b35);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-form-button:hover {
    background: linear-gradient(45deg, #ff6b35, #d4421a);
    transform: translateY(-2px);
}

.footer-main-section {
    background: #2c1810;
    color: white;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand-info {
    margin-bottom: 2rem;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4421a, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 66, 26, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.cart-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

@media (max-width: 768px) {
    .nav-menu-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-text {
        font-size: 1.2rem;
    }
    
    .section-title-heading {
        font-size: 2rem;
    }
    
    .products-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialty-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .process-steps-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-container {
        grid-template-columns: 1fr;
    }
    
    .cta-title-heading {
        font-size: 2rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-button, .cta-secondary-button {
        width: 100%;
        max-width: 300px;
    }
}
.policy-hero-section {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #d4421a 0%, #ff6b35 100%);
    color: white;
    text-align: center;
}

.policy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-main-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.policy-subtitle-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.policy-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb-link-item {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-link-item:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-current-page {
    color: white;
    font-weight: 500;
}

.policy-content-wrapper {
    padding: 4rem 2rem;
    background: #fef8f3;
}

.policy-content-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-sidebar-menu {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(212, 66, 26, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-menu-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
}

.sidebar-title-text {
    color: #d4421a;
    font-size: 1.2rem;
    font-weight: bold;
}

.sidebar-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav-link {
    color: #666;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-nav-link:hover {
    background: linear-gradient(45deg, #d4421a, #ff6b35);
    color: white;
    transform: translateX(5px);
}

.policy-main-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(212, 66, 26, 0.1);
}

.policy-last-updated {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fef8f3;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.policy-section-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section-block:last-child {
    border-bottom: none;
}

.policy-section-title {
    font-size: 2rem;
    color: #d4421a;
    margin-bottom: 1.5rem;
    font-weight: bold;
    position: relative;
}

.policy-section-title::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border-radius: 2px;
}

.policy-subsection-heading {
    font-size: 1.3rem;
    color: #d4421a;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.policy-text-content {
    line-height: 1.8;
    color: #444;
}

.policy-text-content p {
    margin-bottom: 1rem;
}

.policy-list-items {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-list-items li {
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-list-items li::marker {
    color: #d4421a;
}

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

.usage-card-item {
    background: #fef8f3;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.usage-card-item:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 66, 26, 0.1);
}

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

.usage-card-title {
    color: #d4421a;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.policy-sharing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sharing-card-wrapper {
    background: linear-gradient(135deg, #fef8f3, #fff);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.sharing-card-heading {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.security-measures-list {
    margin-top: 2rem;
}

.security-item-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #fef8f3;
    border-radius: 12px;
}

.security-icon-symbol {
    color: #d4421a;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.security-content-area h4 {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.cookies-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cookie-type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 66, 26, 0.1);
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 66, 26, 0.2);
}

.cookie-type-card h4 {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.rights-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rights-item-card {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #2c1810;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.rights-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.rights-icon-display {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4421a;
}

.rights-item-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
    color: #d4421a;
}

.contact-info-wrapper {
    margin-top: 2rem;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fef8f3;
    border-radius: 12px;
    border-left: 4px solid #d4421a;
}

.contact-icon-symbol {
    color: #d4421a;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-details-area h4 {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-details-area p {
    color: #666;
    margin: 0;
}
@media (max-width: 768px) {
    .policy-main-title {
        font-size: 2.5rem;
    }
    
    .policy-subtitle-text {
        font-size: 1.1rem;
    }
    
    .policy-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-sidebar-menu {
        position: static;
        order: 2;
    }
    
    .policy-main-content {
        padding: 2rem;
        order: 1;
    }
    
    .policy-usage-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-sharing-cards {
        grid-template-columns: 1fr;
    }
    
    .cookies-types-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-nav {
        flex-direction: column;
        gap: 0.25rem;
    }
}
.terms-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.terms-highlight-box .fas {
    color: #d4421a;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.highlight-content-area h4 {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.highlight-content-area p {
    color: #2c1810;
    margin: 0;
    font-weight: 500;
}

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

.service-item-card {
    background: linear-gradient(135deg, #fef8f3, #fff);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 66, 26, 0.15);
    border-color: #d4421a;
}

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

.service-title-text {
    color: #d4421a;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.service-item-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.order-process-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    border: 2px solid #fef8f3;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(212, 66, 26, 0.1);
}

.step-number-circle {
    background: linear-gradient(45deg, #d4421a, #ff6b35);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content-area h4 {
    color: #d4421a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.step-content-area p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.delivery-info-card {
    background: linear-gradient(135deg, #fff, #fef8f3);
    border-left: 4px solid #d4421a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.delivery-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 66, 26, 0.15);
}

.delivery-card-icon {
    color: #d4421a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.delivery-info-card h4 {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.delivery-info-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.delivery-notice-box {
    background: linear-gradient(135deg, #ffe6e6, #fff0f0);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.delivery-notice-box h4 {
    color: #d4421a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.delivery-notice-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-notice-box li {
    color: #2c1810;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.delivery-notice-box li::before {
    content: '•';
    color: #d4421a;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.quality-promise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.promise-card-item {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #2c1810;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.promise-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

.promise-card-item h4 {
    color: #d4421a;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.promise-card-item p {
    color: #2c1810;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.refund-policy-timeline {
    position: relative;
    margin: 2rem 0;
}

.refund-policy-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #d4421a, #ff6b35);
    border-radius: 2px;
}

.timeline-item-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-icon-circle {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #d4421a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(212, 66, 26, 0.2);
}

.timeline-content-area {
    background: white;
    border: 2px solid #fef8f3;
    border-radius: 12px;
    padding: 1.5rem;
    flex: 1;
}

.timeline-content-area h4 {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.timeline-content-area p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.liability-card-item {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.liability-card-item:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 66, 26, 0.1);
}

.liability-card-item h4 {
    color: #d4421a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.liability-card-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.modification-notice-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border: 2px solid #2196f3;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.notice-icon-area {
    background: linear-gradient(45deg, #2196f3, #42a5f5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content-section h4 {
    color: #1976d2;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.notice-content-section p {
    color: #2c1810;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.notice-content-section p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}
@media (max-width: 768px) {
    .services-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .delivery-info-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-promise-cards {
        grid-template-columns: 1fr;
    }
    
    .liability-sections-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item-block {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .refund-policy-timeline::before {
        display: none;
    }
    
    .terms-highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modification-notice-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
 .thank-you-hero-section {
            padding: 8rem 2rem 4rem;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            text-align: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .thank-you-content-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .thank-you-icon-display {
            font-size: 5rem;
            margin-bottom: 2rem;
            animation: checkmarkPulse 2s ease-in-out;
        }
        
        @keyframes checkmarkPulse {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.2); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .thank-you-main-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .thank-you-subtitle-text {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .customer-info-summary {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .info-summary-title {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #ffd700;
        }
        
        .info-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .info-item-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .info-label-text {
            font-weight: 600;
            color: #ffd700;
        }
        
        .info-value-text {
            color: white;
            font-weight: 500;
        }
        
        .next-steps-section {
            padding: 4rem 2rem;
            background: #fef8f3;
        }
        
        .next-steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .next-step-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 25px rgba(212, 66, 26, 0.1);
            transition: all 0.3s ease;
        }
        
        .next-step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 66, 26, 0.2);
        }
        
        .step-icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #d4421a, #ff6b35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        
        .step-title-heading {
            color: #d4421a;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .step-description-text {
            color: #666;
            line-height: 1.6;
        }
        
        .action-buttons-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        
        .action-button-primary,
        .action-button-secondary {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .action-button-primary {
            background: linear-gradient(45deg, #d4421a, #ff6b35);
            color: white;
        }
        
        .action-button-secondary {
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
        }
        
        .action-button-primary:hover,
        .action-button-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .contact-reminder-section {
            background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
            padding: 3rem 2rem;
            text-align: center;
            color: #2c1810;
        }
        
        .reminder-content-wrapper {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .reminder-title-heading {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #d4421a;
        }
        
        .reminder-description-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .contact-info-highlight {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .thank-you-main-title {
                font-size: 2.5rem;
            }
            
            .thank-you-subtitle-text {
                font-size: 1.1rem;
            }
            
            .info-item-row {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
            
            .next-steps-grid {
                grid-template-columns: 1fr;
            }
            
            .action-buttons-group {
                flex-direction: column;
                align-items: center;
            }
            
            .action-button-primary,
            .action-button-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .contact-info-highlight {
                flex-direction: column;
                gap: 0.5rem;
            }
        }