* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a96e;
    --accent-color: #8b7355;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transform-origin: top;
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo a:hover {
    color: var(--secondary-color);
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.hero-image {
    order: 2;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

section {
    padding: 60px 10px;
}

.services-intro {
    background-color: var(--white);
}

.services-intro h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.service-card a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.how-it-works {
    background-color: var(--light-bg);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
}

.step h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.featured-categories {
    background: var(--white);
}

.featured-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.category-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.category-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.category-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.why-choose {
    background: var(--light-bg);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-text h2 {
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 1.8rem;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit h4 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.benefit p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.online-shopping-intro {
    padding: 60px 0;
}

.intro-content {
    display: grid;
    gap: 40px;
}

.intro-text {
    margin-bottom: 2rem;
}

.intro-text h2 {
    margin-bottom: 1.2rem;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.stat-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-item i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.shopping-services {
    background: var(--light-bg);
}

.shopping-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.product-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.product-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.product-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.shopping-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.tip-card i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.tip-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.platforms-section {
    background: var(--light-bg);
}

.platforms-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.platforms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.platform-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.platform-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.platform-item h4 {
    margin-bottom: 0.6rem;
}

.platform-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gifts-intro {
    padding: 60px 0;
}

.gifts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gifts-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gifts-text h2 {
    margin-bottom: 1.2rem;
}

.gifts-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.gifts-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
}

.gift-occasions {
    background: var(--light-bg);
}

.gift-occasions h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.occasion-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.occasion-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.occasion-card h3 {
    margin-bottom: 0.8rem;
}

.occasion-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.gift-categories {
    padding: 60px 0;
}

.gift-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.category-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-box:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-box i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.category-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.category-box p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gift-process {
    background: var(--light-bg);
}

.gift-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.step-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.process-step h3 {
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.contact-hero p {
    font-size: 1.1rem;
}

.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.8rem;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-benefits h4 {
    margin-bottom: 1.2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.benefit-item span {
    font-size: 0.9rem;
}

.map-section {
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.google-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta {
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.cta-phone i {
    font-size: 2rem;
}

.thankyou-main,
.error-main {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
}

.thankyou-section,
.error-section {
    padding: 60px 0;
    width: 100%;
}

.thankyou-content,
.error-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    color: var(--white);
    font-size: 2.5rem;
}

.thankyou-content h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.thankyou-details {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.thankyou-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.thankyou-extra {
    margin-top: 3rem;
}

.thankyou-extra h3 {
    margin-bottom: 1rem;
}

.thankyou-extra p {
    margin-bottom: 1.5rem;
}

.quick-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.quick-links a i {
    font-size: 1.1rem;
}

.error-number {
    font-size: 6rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.error-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.error-suggestions {
    margin-top: 3rem;
}

.error-suggestions h3 {
    margin-bottom: 1.5rem;
}

.suggestion-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.suggestion-links a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.suggestion-links a i {
    font-size: 1.1rem;
}

.policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.policy-header h1 {
    color: var(--white);
    font-size: 2rem;
}

.policy-date {
    font-size: 0.95rem;
    opacity: 0.9;
}

.policy-content {
    padding: 60px 0;
}

.policy-article {
    max-width: 900px;
    margin: 0 auto;
}

.policy-article h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.policy-article h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.policy-article h3 {
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

.policy-article h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-article p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-article ul,
.policy-article ol {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}

.policy-article li {
    margin-bottom: 0.6rem;
    color: var(--text-light);
    line-height: 1.6;
}

.policy-article strong {
    color: var(--primary-color);
    font-weight: 600;
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 10px 20px 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.6rem;
}

.footer-section a {
    display: block;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    opacity: 0.85;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.popup-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 250px;
}

.popup-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.popup-content button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popup-content button:hover {
    background-color: var(--accent-color);
}

@media (max-width: 992px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .why-content,
    .gifts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 896px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 15px;
        transition: left 0.3s ease;
        box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav a {
        width: 100%;
        padding: 12px 15px;
        text-align: left;
    }

    .menu-toggle {
        display: block;
    }

    .services-grid,
    .steps,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-section h2,
    .page-header h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .logo a {
        font-size: 1.1rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p,
    .cta-section p {
        font-size: 1rem;
    }

    .cta-button,
    .product-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .cta-button-large {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .popup-content {
        flex-direction: column;
        text-align: center;
    }

    .error-number {
        font-size: 4rem;
    }

    .thankyou-actions,
    .error-actions {
        flex-direction: column;
    }

    .quick-links,
    .suggestion-links {
        flex-direction: column;
    }

    .quick-links a,
    .suggestion-links a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    section {
        padding: 30px 0;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .service-card,
    .step,
    .product-card {
        padding: 20px;
    }
}