/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #212121;
    background-color: #ffffff;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: #424242;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: #1976D2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #424242;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #1976D2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1565C0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1976D2;
    border: 2px solid #1976D2;
}

.btn-secondary:hover {
    background-color: #E3F2FD;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #212121;
    text-align: center;
    margin-bottom: 50px;
}

/* Features Section */
.features {
    background-color: #FAFAFA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.feature-card p {
    color: #616161;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background-color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: #1976D2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.step p {
    color: #616161;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    background-color: #FAFAFA;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #616161;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #1976D2;
}

.cta-section .btn-primary:hover {
    background-color: #F5F5F5;
}

/* Footer */
.footer {
    background-color: #263238;
    color: #ECEFF1;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column p {
    color: #B0BEC5;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #B0BEC5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #37474F;
}

.footer-bottom p {
    color: #90A4AE;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #424242;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 600;
    color: #212121;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: #424242;
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-wrapper p {
    color: #616161;
    line-height: 1.8;
    margin-bottom: 20px;
}

.styled-list {
    margin: 20px 0 20px 24px;
    color: #616161;
    line-height: 1.8;
}

.styled-list li {
    margin-bottom: 12px;
}

.styled-list strong {
    color: #212121;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info,
.contact-form-wrapper {
    background-color: #FAFAFA;
    padding: 40px;
    border-radius: 8px;
}

.contact-method {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E0E0E0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.contact-method p {
    color: #616161;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-form-note {
    background-color: #E3F2FD;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #1976D2;
}

.contact-form-note p {
    color: #424242;
    margin: 0;
}

.contact-details-box {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.contact-details-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.business-hours-section {
    margin-top: 50px;
}

.business-hours-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 30px;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.hours-card {
    background-color: #FAFAFA;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hours-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.hours-card p {
    color: #616161;
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-preview {
    background-color: #E3F2FD;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
}

.faq-preview h2 {
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 20px;
}

.faq-preview p {
    color: #424242;
    margin-bottom: 16px;
}

.faq-preview .styled-list {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
}

.faq-preview .btn {
    margin-top: 20px;
}

/* FAQ Page Styles */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 32px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid #1976D2;
}

.faq-item {
    background-color: #FAFAFA;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.faq-item p {
    color: #616161;
    line-height: 1.8;
    margin: 0;
}

.still-have-questions {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.still-have-questions h2 {
    font-size: 32px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 16px;
}

.still-have-questions p {
    font-size: 18px;
    color: #424242;
    margin-bottom: 28px;
}

/* Contact Box */
.contact-box {
    background-color: #FAFAFA;
    padding: 28px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid #1976D2;
}

.contact-box p {
    margin-bottom: 8px;
}

/* Guide Page Styles */
.guide-toc {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.guide-toc h2 {
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 20px;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.toc-list li a {
    display: block;
    padding: 12px 20px;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    color: #1976D2;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toc-list li a:hover {
    background-color: #1976D2;
    color: white;
    transform: translateX(5px);
}

.guide-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #E0E0E0;
}

.guide-section:last-of-type {
    border-bottom: none;
}

.guide-highlight {
    background-color: #E3F2FD;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #1976D2;
    margin: 25px 0;
}

.guide-highlight h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 12px;
}

.guide-checklist {
    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.guide-checklist h4 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 15px;
}

.guide-checklist ul {
    margin-left: 20px;
}

.guide-checklist li {
    margin-bottom: 15px;
    color: #616161;
    line-height: 1.7;
}

.guide-tip {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid #FDD835;
}

.guide-tip h4 {
    font-size: 18px;
    font-weight: 600;
    color: #F57F17;
    margin-bottom: 10px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.comparison-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1976D2;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.comparison-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 15px;
}

.comparison-card p {
    margin-bottom: 10px;
    color: #616161;
    line-height: 1.6;
}

.guide-steps {
    margin: 30px 0;
}

.guide-step {
    background-color: #FAFAFA;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid #4CAF50;
}

.guide-step .step-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.guide-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.guide-step p {
    color: #616161;
    margin-bottom: 10px;
    line-height: 1.7;
}

.guide-step ul {
    margin-left: 20px;
}

.guide-step li {
    margin-bottom: 8px;
    color: #616161;
    line-height: 1.6;
}

.security-warning {
    background-color: #FFF3E0;
    padding: 30px;
    border-radius: 12px;
    border: 3px solid #FF9800;
    margin: 30px 0;
}

.security-warning h3 {
    font-size: 24px;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 20px;
}

.scam-list {
    display: grid;
    gap: 20px;
}

.scam-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FF5722;
}

.scam-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #D84315;
    margin-bottom: 10px;
}

.scam-item p {
    color: #616161;
    margin-bottom: 8px;
    line-height: 1.6;
}

.security-best-practices {
    background-color: #E8F5E9;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #4CAF50;
    margin: 25px 0;
}

.security-best-practices h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 15px;
}

.redemption-guide {
    margin: 30px 0;
}

.redemption-guide h3 {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 25px;
}

.redemption-method {
    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #1976D2;
}

.redemption-method h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 15px;
}

.redemption-method ol {
    margin-left: 25px;
}

.redemption-method li {
    margin-bottom: 10px;
    color: #616161;
    line-height: 1.7;
}

.value-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.value-tip-card {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #4CAF50;
}

.value-tip-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 15px;
}

.value-tip-card ul {
    margin-left: 20px;
}

.value-tip-card li {
    margin-bottom: 12px;
    color: #424242;
    line-height: 1.6;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.occasion-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #9C27B0;
    transition: transform 0.3s ease;
}

.occasion-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.occasion-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #7B1FA2;
    margin-bottom: 12px;
}

.occasion-card p {
    margin-bottom: 10px;
    color: #616161;
    line-height: 1.6;
}

.occasion-card ul {
    margin: 10px 0 10px 20px;
}

.occasion-card li {
    margin-bottom: 6px;
    color: #616161;
}

.mistakes-list {
    margin: 30px 0;
}

.mistake-item {
    background-color: #FFEBEE;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #F44336;
}

.mistake-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #C62828;
    margin-bottom: 12px;
}

.mistake-item p {
    color: #616161;
    margin-bottom: 8px;
    line-height: 1.7;
}

.guide-cta {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.guide-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.guide-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.guide-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-cta .btn-primary {
    background-color: white;
    color: #1976D2;
}

.guide-cta .btn-primary:hover {
    background-color: #F5F5F5;
}

/* Refund Policy Page Styles */
.policy-notice {
    background-color: #FFF3E0;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FF9800;
    margin-bottom: 30px;
}

.policy-notice h3 {
    font-size: 20px;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 12px;
}

.policy-notice p {
    color: #616161;
    line-height: 1.7;
    margin: 0;
}

.refund-scenario {
    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid #4CAF50;
}

.refund-scenario h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 15px;
}

.refund-scenario p {
    color: #616161;
    line-height: 1.7;
    margin-bottom: 12px;
}

.refund-not-eligible {
    background-color: #FFEBEE;
    border-left-color: #F44336;
}

.refund-not-eligible h3 {
    color: #C62828;
}

.cancellation-timeline {
    background-color: #E3F2FD;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #1976D2;
}

.cancellation-timeline h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 12px;
}

.cancellation-timeline p {
    color: #616161;
    line-height: 1.6;
    margin-bottom: 8px;
}

.process-steps {
    margin: 30px 0;
}

.process-step {
    background-color: #FAFAFA;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #7986CB;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: #3F51B5;
    margin-bottom: 12px;
}

.process-step p {
    color: #616161;
    line-height: 1.7;
    margin-bottom: 10px;
}

.process-step ul {
    margin-left: 25px;
    margin-top: 10px;
}

.process-step li {
    margin-bottom: 8px;
    color: #616161;
    line-height: 1.6;
}

.policy-footer {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.policy-footer p {
    color: #424242;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Products Page Styles */
.products-intro {
    margin-bottom: 40px;
}

.notice-box {
    background-color: #FFF3E0;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FF9800;
    margin: 25px 0;
}

.notice-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 12px;
}

.notice-box a {
    color: #1976D2;
    font-weight: 600;
}

.category-filters {
    margin: 40px 0;
}

.category-filters h2 {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #1976D2;
    background-color: white;
    color: #1976D2;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1976D2;
    color: white;
}

.products-section {
    margin-bottom: 60px;
}

.products-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid #1976D2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FF9800;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
    text-align: center;
}

.product-desc {
    color: #616161;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.product-amounts {
    color: #424242;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-validity {
    color: #757575;
    font-size: 13px;
    margin-bottom: 15px;
    font-style: italic;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.products-disclaimer {
    margin-top: 60px;
}

.info-box {
    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid #1976D2;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 15px;
}

.info-box a {
    color: #1976D2;
    font-weight: 500;
}

.products-cta {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.products-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.products-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.products-cta .btn-primary {
    background-color: white;
    color: #1976D2;
}

.products-cta .btn-primary:hover {
    background-color: #F5F5F5;
}

/* 404 Error Page Styles */
.error-404 {
    padding: 80px 0;
    text-align: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-illustration {
    margin-bottom: 30px;
}

.error-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 15px;
}

.error-message {
    font-size: 18px;
    color: #616161;
    margin-bottom: 40px;
}

.error-suggestions {
    margin: 50px 0;
}

.error-suggestions h3 {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 25px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.suggestion-card {
    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.suggestion-card:hover {
    background-color: #E3F2FD;
    border-color: #1976D2;
    transform: scale(1.05);
}

.suggestion-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.suggestion-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 8px;
}

.suggestion-card p {
    font-size: 14px;
    color: #616161;
}

.search-help {
    background-color: #FAFAFA;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.search-help h3 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 15px;
}

.help-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.help-links a {
    color: #1976D2;
    font-weight: 500;
    text-decoration: none;
}

.help-links a:hover {
    text-decoration: underline;
}

.error-cta {
    margin-top: 40px;
}

/* Sitemap Page Styles */
.sitemap-container {
    max-width: 900px;
    margin: 0 auto;
}

.sitemap-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E0E0E0;
}

.sitemap-section:last-of-type {
    border-bottom: none;
}

.sitemap-section h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 20px;
}

.sitemap-list {
    list-style: none;
    margin-left: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.sitemap-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #1976D2;
    font-weight: bold;
}

.sitemap-list a {
    color: #1976D2;
    text-decoration: none;
    font-weight: 500;
}

.sitemap-list a:hover {
    text-decoration: underline;
}

.sitemap-note {
    background-color: #E3F2FD;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #1976D2;
    margin-top: 40px;
}

.sitemap-note h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 12px;
}

/* Security Page Styles */
.security-intro {
    background-color: #E8F5E9;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #4CAF50;
    margin-bottom: 40px;
}

.security-feature {
    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid #1976D2;
}

.security-feature h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 15px;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.protection-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4CAF50;
}

.protection-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 15px;
}

.protection-card ul {
    list-style: none;
    margin-left: 0;
}

.protection-card li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #616161;
}

.protection-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.user-security {
    margin: 40px 0;
}

.security-tip {
    background-color: #E8F5E9;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #4CAF50;
    margin: 25px 0;
}

.security-tip h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 15px;
}

.security-warning {
    background-color: #FFEBEE;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #F44336;
    margin: 25px 0;
}

.security-warning h4 {
    font-size: 20px;
    font-weight: 600;
    color: #C62828;
    margin-bottom: 15px;
}

.scam-warnings {
    margin: 40px 0;
}

.scam-warning-card {
    background-color: #FFF3E0;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid #FF9800;
}

.scam-warning-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 15px;
}

.scam-warning-card p {
    color: #616161;
    line-height: 1.7;
    margin-bottom: 12px;
}

.scam-warning-card ul {
    margin-left: 25px;
    margin-top: 10px;
}

.scam-warning-card li {
    margin-bottom: 8px;
    color: #616161;
}

.incident-response {
    background-color: #FFEBEE;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #F44336;
    margin: 30px 0;
}

.incident-response h3 {
    font-size: 24px;
    font-weight: 600;
    color: #C62828;
    margin-bottom: 20px;
}

.resources-list {
    background-color: #E3F2FD;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.security-commitment {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    text-align: center;
}

.security-commitment h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 15px;
}

.security-commitment p {
    color: #424242;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-image {
        max-width: 300px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-header-image {
        max-width: 250px;
    }

    .feature-icon img {
        width: 60px;
        height: 60px;
    }

    .section-title {
        font-size: 30px;
    }

    .features-grid,
    .steps-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .content-wrapper h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 250px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .page-header-image {
        max-width: 200px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }

    .feature-card,
    .benefit-item,
    .hours-card,
    .faq-item {
        padding: 20px;
    }
}


