/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 18+ Age Modal */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.age-modal-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.age-modal-header h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.age-modal-body p {
    margin-bottom: 1rem;
}

.responsible-gaming {
    color: #dc2626;
    font-weight: bold;
}

.age-modal-buttons {
    margin-top: 1.5rem;
}

.btn-confirm {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-confirm:hover {
    background: #1e40af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a8a;
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

.btn-cookie-accept {
    background: #f3f4f6;
    color: #1e3a8a;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-cookie-accept:hover {
    background: #e5e7eb;
}

/* Header */
.header {
    background: #1e3a8a;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
    font-weight: bold;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #93c5fd;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-close {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-feature-item i {
    font-size: 1.2rem;
    color: #fbbf24;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.highlight-item i {
    font-size: 2rem;
    color: #fbbf24;
    min-width: 40px;
}

.highlight-item h4 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.highlight-item p {
    margin: 0;
    color: #e5e7eb;
}

.hero-text {
    text-align: left;
    line-height: 1.8;
}

/* Offers Section */
.offers {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2.5rem;
}

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

.other-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.top-offer {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.offer-header h3 {
    color: #1e3a8a;
    margin: 0;
}

.casino-logo {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    color: #fbbf24;
}

.rating span {
    margin-left: 0.5rem;
    font-weight: bold;
    color: #374151;
}

.offer-bonus {
    margin-bottom: 1rem;
}

.bonus-label {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.bonus-value {
    display: block;
    color: #059669;
    font-weight: bold;
    font-size: 1.2rem;
}

.offer-features ul {
    list-style: none;
    margin-bottom: 1rem;
}

.offer-features li {
    padding: 0.3rem 0;
    color: #374151;
}

.offer-features li:before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    margin-right: 0.5rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #6b7280;
}

.btn-offer {
    width: 100%;
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-offer:hover {
    background: #1e40af;
}

/* Content Sections */
.why-legal, .license-check {
    padding: 4rem 0;
    background: #f8f9fa;
}

.advantages, .payment-methods-section {
    padding: 4rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text p {
    margin-bottom: 1rem;
    color: #374151;
}

.content-text ol {
    margin-left: 1.5rem;
    color: #374151;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

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

.advantages-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.advantages-image img {
    width: 100%;
    height: auto;
    display: block;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #6b7280;
}

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

.payment-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.payment-card:hover {
    background: #e5e7eb;
}

.payment-card i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.payment-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #374151;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    padding: 3rem 0;
    background: #1e3a8a;
    color: white;
}

.disclaimer-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.banner-item {
    aspect-ratio: 3/2;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.banner-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.banner-item.banner-icon img {
    filter: none;
}

.banner-item.banner-icon {
    cursor: default;
}

.banner-item.banner-icon:hover {
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.legal-info {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.legal-links {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-links ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info a {
    color: #93c5fd;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 1rem;
    margin-top: 2rem;
}

.copyright p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Placeholder */
.placeholder {
    background: #e5e7eb;
    border: 2px dashed #9ca3af;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
}

/* Content Image */
.content-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-image-full {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.offers-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.offers-image-item {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offers-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile optimizations - remove padding between sections */
    .hero, .offers, .why-legal, .advantages, .license-check, .payment-methods-section, .faq, .disclaimer {
        padding: 2rem 0;
    }
    
    /* Reduce section title font size on mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* Reduce margins between blocks on mobile */
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-highlights {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .top-offers, .other-offers {
        gap: 1rem;
    }
    
    .advantages-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-grid {
        gap: 1rem;
    }
    
    .advantages-image {
        position: static;
    }
    
    .content-grid {
        gap: 1.5rem;
    }
    
    .payment-grid {
        gap: 1rem;
    }
    
    .banner-grid {
        gap: 0.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .offer-card, .advantage-card {
        padding: 1.5rem;
    }
    
    /* Header mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #1e3a8a;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .burger {
        display: flex;
        z-index: 1002;
    }
    
    .nav-close {
        display: block;
    }
    
    /* Hero mobile */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Offers mobile */
    .top-offers {
        grid-template-columns: 1fr;
    }
    
    .other-offers {
        grid-template-columns: 1fr;
    }
    
    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .casino-logo {
        max-height: 50px;
        max-width: 150px;
    }
    
    .payment-methods {
        font-size: 1.2rem;
    }
    
    .offers-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Content sections mobile */
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Banner grid mobile - 2 columns */
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .banner-item {
        aspect-ratio: 3/2;
        padding: 0.75rem;
    }
    
    /* If odd number of banners, center the last one without stretching */
    .banner-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: calc(50% - 0.375rem);
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content p {
        margin-right: 0;
    }
    
    /* Age modal mobile */
    .age-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .age-modal-header h2 {
        font-size: 1.5rem;
    }
    
    /* Legal links mobile */
    .legal-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .offer-card, .advantage-card {
        padding: 1rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .banner-item {
        padding: 0.5rem;
    }
    
    .banner-item:last-child:nth-child(odd) {
        max-width: calc(50% - 0.25rem);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Font Awesome Icons (using CDN) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Legal Pages Styles */
.legal-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.legal-page .container {
    max-width: 800px;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.back-link {
    display: inline-block;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: #e5e7eb;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #d1d5db;
    text-decoration: none;
}

.legal-page h1 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #1e3a8a;
    padding-bottom: 1rem;
}

.legal-page h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: #374151;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #1e3a8a;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e40af;
}

/* Warning boxes */
.warning-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h2 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* Emergency box */
.emergency-box {
    background: #fee2e2;
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.emergency-box h3 {
    color: #991b1b;
    margin-top: 0;
    margin-bottom: 1rem;
}

.emergency-box p {
    color: #7f1d1d;
    margin-bottom: 0.5rem;
}

.emergency-box ol {
    color: #7f1d1d;
    margin-bottom: 1rem;
}

/* Help organizations */
.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-org {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.help-org h3 {
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 1rem;
}

.help-org p {
    color: #374151;
    margin-bottom: 0.5rem;
}

.help-org p:last-child {
    margin-bottom: 0;
}

/* Important notice */
.important-notice {
    background: #dbeafe;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-notice h3 {
    color: #1e40af;
    margin-top: 0;
    margin-bottom: 1rem;
}

.important-notice p {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.important-notice p:last-child {
    margin-bottom: 0;
}

/* Responsive for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 1rem 0;
    }
    
    .legal-page .container {
        padding: 2rem 1.5rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
    }
    
    .help-organizations {
        grid-template-columns: 1fr;
    }
}

/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}