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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

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

.logo-icon {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.logo-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 500;
}

.logo-disclaimer {
    font-size: 0.625rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.125rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

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

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

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: #2563eb;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    display: block;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-menu-link:hover {
    color: #2563eb;
}

main {
    padding-top: 5rem;
}

.hero-section {
    position: relative;
    background: #f8fafc;
    padding: 3rem 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content {
    animation: fadeIn 0.6s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: none;
    border: 1px solid #bae6fd;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-text-large {
    font-size: 1.125rem;
    color: #334155;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.hero-text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 1.5px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-download {
    background: #059669;
    color: white;
    width: 100%;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
}

@media (min-width: 640px) {
    .btn-download {
        width: auto;
    }
}

.btn-download:hover {
    background: #047857;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-download svg {
    transition: transform 0.3s;
    width: 1.25rem;
    height: 1.25rem;
}

.btn-download:hover svg {
    animation: bounce 1s infinite;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.feature-card svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    margin: 0 auto 0.5rem;
}

.feature-card p {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.hero-image-container {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-image-glow {
    position: absolute;
    inset: -0.25rem;
    background: linear-gradient(to right, #2563eb, #06b6d4);
    border-radius: 1rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-image-wrapper {
    position: relative;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    transition: transform 0.2s;
}

.hero-image-wrapper:hover {
    transform: translateY(-2px);
}

.hero-image-wrapper:hover .hero-image-glow {
    opacity: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.hero-badge-new {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    animation: pulse 2s infinite;
}

.download-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #ecfdf5, #ccfbf1);
}

.download-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.download-header {
    background: #059669;
    padding: 1.25rem 1.5rem;
}

.download-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.download-header-content > div:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.download-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.625rem;
    border-radius: 0.5rem;
}

.download-icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.download-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.125rem;
}

.download-validity {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.9);
}

.download-validity svg {
    width: 0.875rem;
    height: 0.875rem;
}

.download-validity span {
    font-size: 0.75rem;
    font-weight: 400;
}

.download-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.download-content {
    padding: 2rem 2.5rem;
    display: grid;
    gap: 2.5rem;
    align-items: start;
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
}

@media (min-width: 768px) {
    .download-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.download-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.section-text {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
}

.download-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    background: #d1fae5;
    padding: 0.5rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
}

.download-feature h4 {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.875rem;
}

.download-feature p {
    font-size: 0.875rem;
    color: #64748b;
}

.download-preview {
    position: relative;
}

.preview-card {
    background: linear-gradient(to bottom right, #d1fae5, #99f6e4);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.2s;
}

.preview-card:hover {
    transform: translateY(-2px);
}

.preview-placeholder {
    aspect-ratio: 8.5 / 11;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.preview-placeholder svg {
    width: 4rem;
    height: 4rem;
    color: #059669;
    margin-bottom: 0.75rem;
}

.preview-label {
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
}

.preview-sublabel {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.preview-info {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #64748b;
}

.badge-week {
    position: absolute;
    bottom: -0.75rem;
    right: -0.75rem;
    background: linear-gradient(to right, #f97316, #dc2626);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: rotate(6deg);
}

.download-help {
    background: linear-gradient(to right, #fed7aa, #fef08a);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-icon {
    background: #f97316;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.help-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.help-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.875rem;
}

.help-text {
    font-size: 0.75rem;
    color: #64748b;
}

.help-link {
    color: #ea580c;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

.help-link:hover {
    color: #c2410c;
}

.flyer-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge svg {
    width: 1rem;
    height: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

.section-description.white {
    color: #dbeafe;
}

.flyer-carousel-container {
    margin-bottom: 4rem;
}

.flyer-carousel {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1rem 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .flyer-carousel {
        padding: 2rem;
    }
}

.flyer-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
}

.flyer-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.flyer-image-wrapper:hover .flyer-image {
    transform: scale(1.05);
}

.flyer-zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyer-image-wrapper:hover .flyer-zoom-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.zoom-icon {
    background: white;
    border-radius: 9999px;
    padding: 1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.flyer-image-wrapper:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.zoom-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #1f2937;
    padding: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: #f3f4f6;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0.5rem;
}

@media (min-width: 640px) {
    .prev-btn {
        left: 1rem;
    }
}

.next-btn {
    right: 0.5rem;
}

@media (min-width: 640px) {
    .next-btn {
        right: 1rem;
    }
}

.carousel-info {
    margin-top: 1.5rem;
}

.page-counter {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.thumbnail {
    flex-shrink: 0;
    width: 5rem;
    height: 7rem;
    object-fit: cover;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.7;
}

.thumbnail:hover {
    border-color: #60a5fa;
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border: 4px solid #2563eb;
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: #1f2937;
    padding: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    z-index: 50;
}

.modal-close:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #1f2937;
    padding: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    z-index: 50;
}

.modal-nav:hover {
    background: #f3f4f6;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 1rem;
}

.modal-nav.next {
    right: 1rem;
}

.modal-content {
    max-width: 96rem;
    max-height: 100%;
    overflow: auto;
}

.modal-content img {
    width: 100%;
    height: auto;
}

.modal-page-counter {
    text-align: center;
    margin-top: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #4b5563;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-box {
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-box:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.25rem);
}

.blue-gradient {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.green-gradient {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.orange-gradient {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
}

.violet-gradient {
    background: linear-gradient(to bottom right, #8b5cf6, #7c3aed);
}

.feature-box-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

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

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-list li span:first-child {
    font-size: 1.25rem;
}

.promo-card {
    background: linear-gradient(to right, #eff6ff, #f0fdfa);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #bfdbfe;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .promo-card {
        flex-direction: row;
    }
}

.promo-icon {
    background: #2563eb;
    padding: 1rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.promo-icon svg {
    color: white;
}

.promo-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .promo-content {
        text-align: left;
    }
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.promo-text {
    color: #374151;
    line-height: 1.75;
}

.how-to-use-section {
    margin-top: 4rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .how-to-use-section {
        padding: 3rem;
    }
}

.how-to-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.how-to-icon {
    background: linear-gradient(to bottom right, #2563eb, #06b6d4);
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.how-to-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.how-to-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 640px) {
    .how-to-title {
        font-size: 2.25rem;
    }
}

.how-to-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.how-to-step {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid;
}

.how-to-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.how-to-step p {
    color: #374151;
    line-height: 1.75;
}

.step-blue {
    background: linear-gradient(to right, #eff6ff, #ffffff);
    border-left-color: #2563eb;
}

.step-green {
    background: linear-gradient(to right, #ecfdf5, #ffffff);
    border-left-color: #059669;
}

.step-orange {
    background: linear-gradient(to right, #fff7ed, #ffffff);
    border-left-color: #f97316;
}

.step-violet {
    background: linear-gradient(to right, #f5f3ff, #ffffff);
    border-left-color: #8b5cf6;
}

.step-cyan {
    background: linear-gradient(to right, #ecfeff, #ffffff);
    border-left-color: #06b6d4;
}

.pro-tips-box {
    background: linear-gradient(to bottom right, #2563eb, #06b6d4);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
}

.pro-tips-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pro-tips-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pro-tips-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tip-bullet {
    font-size: 1.5rem;
    font-weight: 700;
    color: #bfdbfe;
    flex-shrink: 0;
}

.blog-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.blog-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-post {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.blog-category {
    display: inline-block;
    background: linear-gradient(to right, #2563eb, #06b6d4);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-post-excerpt {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-post-content {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.75;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.blog-post-content p {
    margin: 0;
}

.shopping-section {
    padding: 5rem 0;
    background: white;
}

.options-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .options-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.option-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
}

.option-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.option-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.option-card:hover .option-icon {
    transform: scale(1.1);
}

.option-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.option-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.option-text {
    color: #4b5563;
    line-height: 1.75;
}

.info-cards {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.info-card svg {
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.info-card p {
    line-height: 1.75;
    margin-bottom: 1rem;
}

.blue-info {
    background: linear-gradient(to bottom right, #2563eb, #06b6d4);
}

.green-info {
    background: linear-gradient(to bottom right, #059669, #047857);
}

.info-btn {
    background: white;
    color: #047857;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.info-btn:hover {
    background: #d1fae5;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
}

.faq-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #374151;
    line-height: 1.75;
}

.locator-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.locator-grid {
    display: grid;
    gap: 2rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .locator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.map-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.map-container {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-footer {
    background: linear-gradient(to right, #eff6ff, #f0fdfa);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-icon {
    background: #2563eb;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.map-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.map-footer h3 {
    font-weight: 700;
    color: #111827;
}

.map-footer p {
    font-size: 0.875rem;
    color: #4b5563;
}

.locator-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.locator-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.locator-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.locator-icon {
    background: linear-gradient(to bottom right, #2563eb, #06b6d4);
    padding: 1rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    display: inline-block;
    margin-bottom: 1rem;
}

.locator-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.locator-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.locator-content p {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .search-form {
        flex-direction: row;
    }
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    outline: none;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.search-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.store-info-card {
    background: linear-gradient(to bottom right, #059669, #047857);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.store-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.store-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.store-info-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #d1fae5;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.store-info-item h4 {
    font-weight: 600;
    color: #d1fae5;
    margin-bottom: 0.25rem;
}

.store-info-item p {
    color: #d1fae5;
    font-size: 0.875rem;
}

.directions-card {
    background: linear-gradient(to right, #fed7aa, #fca5a5);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #fb923c;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.directions-icon {
    background: #f97316;
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.directions-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.directions-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.directions-card p {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.75;
}

.subscription-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #2563eb, #06b6d4, #1d4ed8);
    overflow: hidden;
}

.subscription-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 48px 48px;
}

.subscription-container {
    position: relative;
    z-index: 10;
}

.subscription-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: #d1fae5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #059669;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #4b5563;
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.method-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .method-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.method-btn {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.method-btn:hover {
    border-color: #60a5fa;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.method-btn.active {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.method-btn svg {
    color: #9ca3af;
    transition: color 0.3s;
}

.method-btn.active svg {
    color: #2563eb;
}

.method-btn span {
    font-weight: 600;
    color: #374151;
}

.method-btn.active span {
    color: #2563eb;
}

.method-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.store-preference-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .store-preference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.store-pref-btn {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.store-pref-btn:hover {
    border-color: #60a5fa;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.store-pref-btn.active {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.store-pref-btn svg {
    color: #9ca3af;
    transition: color 0.3s;
}

.store-pref-btn.active svg {
    color: #2563eb;
}

.store-pref-title {
    font-weight: 600;
    color: #374151;
    display: block;
}

.store-pref-btn.active .store-pref-title {
    color: #2563eb;
}

.store-pref-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
    display: block;
    margin-top: 0.25rem;
}

.store-pref-icons {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.store-selection {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1rem;
    animation: fadeIn 0.6s ease-out;
}

.select-all-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid #d1d5db;
    background: white;
    color: #374151;
    margin-bottom: 1rem;
}

.select-all-btn:hover {
    border-color: #60a5fa;
}

.select-all-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.store-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .store-checkboxes {
        grid-template-columns: repeat(3, 1fr);
    }
}

.store-checkbox {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.store-checkbox:hover {
    border-color: #60a5fa;
}

.store-checkbox.active {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.store-checkbox-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-checkbox.active .checkbox-icon {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-icon svg {
    width: 0.75rem;
    height: 0.75rem;
    color: white;
}

.store-checkbox span {
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

.store-checkbox.active span {
    color: #2563eb;
}

.selected-count {
    font-size: 0.75rem;
    color: #4b5563;
    margin-top: 1rem;
}

.input-field {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.error-message {
    background: #fef2f2;
    color: #b91c1c;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    font-weight: 600;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-submit:hover:not(:disabled) {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer {
    background: linear-gradient(to bottom right, #111827, #1f2937, #111827);
    color: #d1d5db;
}

.footer-content {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #374151;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: #2563eb;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #9ca3af;
}

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #60a5fa;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #60a5fa;
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #374151;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0.25rem;
    height: 0.25rem;
    background: #3b82f6;
    border-radius: 9999px;
    transition: width 0.3s;
}

.footer-links a:hover::before {
    width: 0.5rem;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-external-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-external-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.footer-external-links a::before {
    content: '↗';
    color: #3b82f6;
    flex-shrink: 0;
}

.footer-external-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #60a5fa;
}

.footer-legal-links span {
    color: #4b5563;
}

.footer-copyright {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-copyright p:first-child {
    margin-bottom: 0.5rem;
}

.footer-copyright p:last-child {
    font-size: 0.75rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.interlink-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.interlink-content {
    max-width: 1000px;
    margin: 0 auto;
}

.interlink-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
}

.interlink-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .interlink-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .interlink-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.interlink-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.interlink-btn:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}
