/* ========== ROOT VARIABLES ========== */
:root {
    --color-primary: #4db8a8;
    --color-primary-hover: #3da899;
    --color-dark: #0a1628;
    --color-dark-overlay: rgba(10, 22, 40, 0.8);
    --color-text-light: #ffffff;
    --color-text-gray: #c0c5d0;
    --color-background: #0f1419;
    --color-cookie-bg: #1a2942;
    --color-header-scroll: rgba(10, 22, 40, 0.95);
}

/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ECF4F3;
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-gray);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 184, 168, 0.3);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--color-header-scroll);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.logo a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--color-primary);
}

.nav {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.phone-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 {
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* ========== COOKIE NOTIFICATION ========== */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-cookie-bg);
    padding: 18px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-notification.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin: 0;
}

.cookie-btn {
    padding: 10px 30px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ========== SECTION LABELS & TITLES ========== */
.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle-light {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

/* ========== ABOUT US SECTION ========== */
.about-section {
    background-color: #ECF4F3;
    padding: 100px 0;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto 0 20px;
    background-color: #ffffff;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    transform: translateY(-200px);
}

.about-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-content .btn {
    margin-top: 1.5rem;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
    background-color: #ECF4F3;
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.value-card {
    text-align: left;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== FEEL THE POWER SECTION ========== */


.power-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark-overlay);
    z-index: 0;
}

.power-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 80px 20px;
}

.power-content h2 {
    font-size: 2.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.power-content p {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

/* ========== WHY LUNAVIRA SECTION ========== */
.why-lunavira-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.why-lunavira-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-lunavira-content h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-lunavira-content p {
    color: #666;
}

.why-lunavira-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    margin: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background-color: #ECF4F3;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* ========== CTA SECTION ========== */


.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark-overlay);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 80px 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

/* ========== SERVICES PACKS SECTION ========== */
.services-packs-section {
    background-color: #ECF4F3;
    padding: 100px 0;
    position: relative;
}

.services-packs-wrapper {
    max-width: 1200px;
    margin: 0 auto 0 20px;
    background-color: #ffffff;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    transform: translateY(-200px);
    padding: 60px 0;
}

.pack-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
    min-height: 400px;
}

.pack-item:last-child {
    border-bottom: none;
}

.pack-item.pack-reverse {
    grid-template-columns: 1fr 1fr;
}

.pack-content {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pack-content h3 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.pack-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.pack-features {
    color: var(--color-dark);
    font-weight: 500;
}

.pack-features strong {
    color: var(--color-primary);
}

.pack-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.pack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========== SINGLE TESTIMONIAL SECTION ========== */
.single-testimonial-section {
    background-color: #ECF4F3;
    padding: 0 0 100px 0;
}

.single-testimonial {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.single-testimonial .quote-icon {
    font-size: 5rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 2rem;
}

.single-testimonial .testimonial-text {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.single-testimonial .testimonial-author {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}


/* ========== CONTACT INFO SECTION ========== */
.contact-info-section {
    background-color: #ECF4F3;
    padding: 100px 0;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-left h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.contact-left>p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.contact-list li {
    font-size: 1.05rem;
    color: #666;
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.contact-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.contact-list li strong {
    color: var(--color-dark);
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    transform: translateY(-200px);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.form-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    align-self: flex-start;
    padding: 12px 40px;
    margin-top: 1rem;
}

/* ========== PRIVACY POLICY SECTION ========== */
.privacy-section {
    background-color: #ECF4F3;
    padding: 150px 0 100px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.privacy-content h1 {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.policy-block {
    margin-bottom: 2.5rem;
}

.policy-block h2 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    padding-left: 15px;
    border-left: 4px solid var(--color-primary);
}

.policy-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-block a {
    color: var(--color-primary);
    text-decoration: underline;
}

.policy-block a:hover {
    color: var(--color-primary-hover);
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.policy-footer p {
    font-size: 1.1rem;
    color: #555;
}

.policy-footer a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.policy-footer a:hover {
    color: var(--color-primary-hover);
}

/* ========== ABOUT INTRO SECTION ========== */
.about-intro-section {
    background-color: #ECF4F3;
    padding: 100px 0;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.about-intro-content p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ========== APPROACH SECTION ========== */
.approach-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.section-title-dark {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-card {
    text-align: center;
    padding: 30px;
}

.approach-card h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* ========== WHITE HEADER ========== */
.header-white {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-white .logo a {
    color: var(--color-dark);
}

.header-white .nav a {
    color: var(--color-dark);
}

.header-white .nav a:hover,
.header-white .nav a.active {
    color: var(--color-primary);
}

/* ========== GAMES SECTION ========== */
.games-section {
    padding: 150px 0 100px 0;
    background-color: #ECF4F3;
}

.page-title {
    font-size: 3rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.game-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.game-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-content {
    padding: 30px;
}

.game-content h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.game-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 0.85rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        margin: 0 20px;
        transform: translateY(-50px);
    }

    .about-section {
        padding: 50px 0 100px 0;
    }

    .about-content {
        padding: 60px 40px;
    }

    .about-image {
        min-height: 400px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-lunavira-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-title,
    .section-title-center {
        font-size: 2rem;
    }

    .power-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .about-wrapper {
        margin: 0 15px;
        transform: translateY(-30px);
    }

    .about-content {
        padding: 40px 30px;
    }

    .about-section {
        padding: 30px 0 80px 0;
    }

    .why-choose-section,
    .why-lunavira-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .section-title,
    .section-title-center {
        font-size: 1.75rem;
    }

    .power-content,
    .cta-content {
        padding: 60px 20px;
    }

    .power-content h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .page-title {
        font-size: 2rem;
    }

    .services-packs-wrapper {
        margin: 0 20px;
        transform: translateY(-100px);
    }

    .services-packs-section {
        padding: 50px 0 100px 0;
    }

    .pack-item,
    .pack-item.pack-reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pack-content {
        padding: 40px;
    }

    .pack-image {
        min-height: 300px;
        height: 300px;
    }

    .single-testimonial {
        padding: 50px 40px;
    }

    .single-testimonial .quote-icon {
        font-size: 4rem;
    }

    .single-testimonial .testimonial-text {
        font-size: 1.1rem;
    }

    .about-intro-content h2 {
        font-size: 1.8rem;
    }

    .about-intro-content p {
        font-size: 1rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title-dark {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-left {
        padding: 40px 30px;
    }

    .contact-left h2 {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
        transform: translateY(-100px);
    }

    .contact-form-header h3 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .privacy-content {
        padding: 50px 40px;
    }

    .privacy-content h1 {
        font-size: 2.5rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .policy-block h2 {
        font-size: 1.5rem;
    }

    .policy-block p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .game-image {
        height: 250px;
    }

    .game-content {
        padding: 25px;
    }

    .game-content h3 {
        font-size: 1.25rem;
    }

    .services-packs-wrapper {
        margin: 0 15px;
        transform: translateY(-50px);
        padding: 40px 0;
    }

    .services-packs-section {
        padding: 30px 0 80px 0;
    }

    .pack-content {
        padding: 30px 20px;
    }

    .pack-content h3 {
        font-size: 1.5rem;
    }

    .pack-image {
        min-height: 250px;
        height: 250px;
    }

    .single-testimonial {
        padding: 40px 30px;
    }

    .single-testimonial .quote-icon {
        font-size: 3rem;
    }

    .single-testimonial .testimonial-text {
        font-size: 1rem;
    }

    .about-intro-section {
        padding: 60px 0;
    }

    .about-intro-content h2 {
        font-size: 1.5rem;
    }

    .about-intro-content p {
        font-size: 0.95rem;
    }

    .approach-section {
        padding: 60px 0;
    }

    .approach-card {
        padding: 20px;
    }

    .approach-card h3 {
        font-size: 1.5rem;
    }

    .section-title-dark {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .contact-left {
        padding: 30px 20px;
    }

    .contact-left h2 {
        font-size: 1.5rem;
    }

    .contact-left>p {
        font-size: 1rem;
    }

    .contact-details h3 {
        font-size: 1.2rem;
    }

    .contact-list li {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        transform: translateY(-50px);
    }

    .contact-form-header h3 {
        font-size: 1.3rem;
    }

    .form-submit {
        width: 100%;
    }

    .privacy-section {
        padding: 120px 0 80px 0;
    }

    .privacy-content {
        padding: 40px 30px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .policy-block {
        margin-bottom: 2rem;
    }

    .policy-block h2 {
        font-size: 1.3rem;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .policy-block p {
        font-size: 0.95rem;
    }

    .policy-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .policy-footer p {
        font-size: 1rem;
    }
}