/* GiftMahya - Minimalist Design */
/* Color Palette: White, Gray, Blue Accent */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.info-banner .banner-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.info-banner strong {
    font-weight: 600;
}

.info-banner span {
    line-height: 1.5;
}

/* Header */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo img {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.logo span {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    padding: 8px 0;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

/* Main Content */
main {
    flex: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Content Sections */
.intro,
.benefits,
.guide,
.tips,
.occasions,
.categories,
.cta,
.content-section {
    padding: 60px 0;
}

.intro {
    background-color: var(--bg-white);
}

.benefits {
    background-color: var(--bg-light);
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Grid Layouts */
.benefit-grid,
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.benefit-card,
.occasion-item {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover,
.occasion-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon,
.category-icon,
.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: block;
}

.page-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
}

.benefit-card h3,
.occasion-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Guide Steps */
.guide-content {
    margin-top: 32px;
}

.guide-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.guide-step h3 {
    margin-top: 0;
}

/* Tips and Lists */
.tips-content ul,
.category-list,
.content-section ul {
    list-style: none;
    margin-top: 24px;
}

.tips-content li,
.content-section li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.tips-content li:last-child,
.content-section li:last-child {
    border-bottom: none;
}

.tips-content strong,
.content-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Category Items */
.category-item {
    background-color: var(--bg-white);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.category-item .category-icon {
    flex-shrink: 0;
}

.category-item h3 {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    background: var(--bg-light);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.value-item {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-item .value-icon {
    margin: 0 auto 16px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Contact Section */
.contact-intro,
.contact-methods,
.contact-guidelines,
.what-we-help-with,
.what-we-cannot-help-with,
.response-time,
.feedback-section,
.business-inquiries,
.office-info,
.business-details,
.privacy-note,
.cta-section {
    margin-bottom: 48px;
}

.contact-intro,
.faq-intro {
    text-align: center;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Guide Section */
.guide-intro {
    text-align: center;
    margin-bottom: 48px;
}

.guide-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.guide-section:last-of-type {
    border-bottom: none;
}

.guide-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    margin-top: 0;
}

.guide-section h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.guide-section p {
    margin-bottom: 20px;
}

.guide-section ul {
    list-style: disc;
    margin-left: 32px;
    margin-bottom: 24px;
}

.guide-section li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Resources Section */
.resources-intro {
    text-align: center;
    margin-bottom: 48px;
}

.resource-section {
    margin-bottom: 60px;
}

.resource-card,
.scenario-card {
    background-color: var(--bg-light);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.resource-card h3,
.scenario-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.checklist {
    list-style: none;
    margin-left: 0;
}

.checklist li {
    padding: 12px 0 12px 36px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.terminology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.term-card {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.term-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 12px;
}

.term-card p {
    font-size: 15px;
    margin: 0;
}

.occasion-guide {
    background-color: var(--bg-light);
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 8px;
}

.occasion-guide h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tips-list ul {
    list-style: none;
    margin: 0;
}

.tips-list li {
    padding: 20px;
    background-color: var(--bg-white);
    margin-bottom: 16px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

/* FAQ Section */
.faq-intro {
    margin-bottom: 48px;
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    background-color: var(--bg-light);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-footer {
    background-color: var(--bg-light);
    padding: 48px;
    text-align: center;
    border-radius: 8px;
    margin-top: 48px;
}

.faq-footer h2 {
    margin-bottom: 16px;
}

.faq-footer p {
    margin-bottom: 24px;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-content li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--text-primary);
    color: var(--bg-white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-banner {
        padding: 10px 0;
        font-size: 12px;
    }

    .info-banner .container {
        flex-direction: row;
        text-align: left;
        gap: 8px;
    }

    .info-banner .banner-icon {
        width: 16px;
        height: 16px;
    }

    header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        width: 100px;
        height: 35px;
    }

    .category-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-icon,
    .category-icon,
    .value-icon {
        width: 60px;
        height: 60px;
    }

    .page-icon {
        width: 90px;
        height: 90px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .benefit-grid,
    .occasions-grid {
        grid-template-columns: 1fr;
    }

    .guide-step {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .info-banner {
        font-size: 11px;
        padding: 8px 0;
    }

    .info-banner .container {
        gap: 6px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .intro,
    .benefits,
    .guide,
    .tips,
    .occasions,
    .categories,
    .cta,
    .content-section {
        padding: 40px 0;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .cta,
    .cta-buttons {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    a {
        text-decoration: underline;
        color: #000;
    }
}

