:root {
    --primary: #6c5ce7;
    --secondary: #a29bfe;
    --dark: #2d3436;
    --light: #f5f6fa;
    --accent: #fd79a8;
    --text: #636e72;
    --white: #ffffff;
    --black: #000000;
    --gray: #dfe6e9;
    --success: #00b894;
    --warning: #fdcb6e;
    --error: #d63031;
    --font-main: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.c {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.b {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    position: relative;
}

.b .c {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.b p {
    margin-right: 20px;
}

.d {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    padding: 0 5px;
}

.e {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.f {
    display: flex;
    align-items: center;
}

.g {
    display: flex;
    align-items: center;
}

.h {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    padding: 0;
}

.i {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark);
    transition: var(--transition);
}

.j {
    display: flex;
    gap: 30px;
}

.k {
    padding: 20px 0;
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.k:hover {
    color: var(--primary);
}

.k::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.k:hover::after {
    width: 100%;
}

.l::after {
    width: 100%;
}
.i {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.h.is-open .i:nth-child(2) {
    opacity: 0;
}

.h.is-open .i:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.h.is-open .i:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .h {
        display: flex;
    }

    .j {
        flex-direction: column;
        gap: 0;

        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background-color: var(--white);
        box-shadow: var(--shadow-sm);
        z-index: 99; 

        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px); 
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .j.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .k {
        padding: 15px 20px;
        text-align: center;
        border-top: 1px solid #eee; 
        width: 100%;
    }

    .k::after, .k:hover::after {
        display: none;
    }
}
@media (max-width: 768px) {
    .h {
        display: flex;
    }

    .j {
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        height: 40vh;
        flex-direction: column;
        gap: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-sm);
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s;
    }

    .j.is-open {
        visibility: visible;
        opacity: 1;
    }

    .k {
        padding: 15px 20px;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
}
.m {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.m:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.n {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}
#age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-popup-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  animation: fadeInScale 0.4s ease forwards;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #000;
}

.age-popup-content h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #333;
}

.age-popup-buttons button {
  margin: 0 10px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

#age-yes {
  background-color: #4CAF50;
  color: white;
}
#age-yes:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

#age-no {
  background-color: #f44336;
  color: white;
}
#age-no:hover {
  background-color: #d7372b;
  transform: scale(1.05);
}
body.popup-active > *:not(#age-popup) {
  filter: blur(5px);
  pointer-events: none;
}

body.no-scroll {
  overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    margin-top: 10px;
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.primary-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.primary-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
}
.store-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.store-hero-content h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.store-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.console-grid {
    padding: 60px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.console-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.console-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.console-card:hover .card-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--accent);
}

.badge.family {
    background: var(--success);
}

.badge.budget {
    background: var(--primary);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--warning);
}

.rating span {
    font-size: 0.9rem;
    color: var(--text);
    margin-left: 5px;
}

.description {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 0.95rem;
}

.pricing {
    margin-bottom: 20px;
}

.price-option {
    margin-bottom: 10px;
}

.price-option input {
    display: none;
}

.price-option label {
    display: block;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.price-option input:checked + label {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.duration {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.price {
    font-weight: 600;
    color: var(--dark);
}

.save {
    font-size: 0.8rem;
    color: var(--success);
    margin-left: 5px;
}

.view-details {
    display: block;
    text-align: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.view-details:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray);
    transition: var(--transition);
}

.page-btn.active, .page-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-btn.next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
    gap: 5px;
}

.accessories-section {
    padding: 60px 0;
    background: var(--light);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text);
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.accessory-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.accessory-card .card-image {
    height: 150px;
}

.retail {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
    text-decoration: line-through;
}

.why-rent {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .grid-container, .accessories-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .store-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .grid-container, .accessories-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .store-hero {
        padding: 40px 0 30px;
    }
}
.v {
    padding: 60px 0;
    background-color: var(--white);
}

.w {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    text-align: center;
}

.x {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.y {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.y:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.z {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.aa {
    padding: 80px 0;
    background-color: var(--light);
}

.ab {
    margin-bottom: 60px;
}

.ac {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ad {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.ad:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ae {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.af {
    padding: 80px 0;
    background-color: var(--white);
}

.ag {
    position: relative;
}

.ah {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
}

.ai {
    min-width: 100%;
    scroll-snap-align: start;
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.aj {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.aj img {
    border-radius: 50%;
}

.ak {
    color: var(--warning);
}

.al {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.al:hover {
    background-color: var(--primary);
    color: var(--white);
}

.am {
    left: -20px;
}

.an {
    right: -20px;
}

.ao {
    padding: 80px 0;
    background-color: var(--light);
}

.ap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.aq {
    padding: 80px 0;
    background-color: var(--white);
}

.ar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.as {
    text-align: center;
    padding: 30px;
    background-color: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.as:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.at {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.au {
    padding: 80px 0;
    background-color: var(--light);
}

.av {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.aw {
    margin: 30px 0;
}

.aw li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.ax {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.2rem;
}

.ay {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.az {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.ba {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bb {
    display: flex;
    gap: 15px;
}

.bb a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.bb a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.bc h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.bc ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bc a:hover {
    color: var(--primary);
}

.bd {
    margin-right: 10px;
    color: var(--primary);
}

.be {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.be div {
    display: flex;
    gap: 20px;
}

.be a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .ac, .ar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .n {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .o, .av, .ap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .t, .av img, .ap img {
        order: -1;
    }
    
    .az {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .be {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .x, .ac, .ar {
        grid-template-columns: 1fr;
    }
    
    .q {
        flex-direction: column;
    }
    
    .az {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .w {
        font-size: 1.8rem;
    }
}
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/bg/bg.webp') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.mission-section {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.mission-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text);
}

.mission-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.team-section {
    padding: 80px 0;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
}

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

.team-member h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    margin-bottom: 20px;
    color: var(--text);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.testimonials-section {
    padding: 80px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.rating {
    color: var(--warning);
    margin-bottom: 20px;
}

blockquote {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.name {
    font-weight: 600;
    color: var(--dark);
}

.location {
    font-size: 0.9rem;
    color: var(--text);
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.primary-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.primary-cta:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.secondary-cta {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        order: -1;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .team-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
.contact-hero {
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/bg/bg.webp') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 60px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

.submit-btn {
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--secondary);
}

.contact-info-section {
    padding: 60px 0 80px;
    background: var(--light);
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}
.agreement-container {
    margin: 20px 0;
}

.agreement-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agreement-label {
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
    display: inline;
}

input[type="checkbox"] {
    margin: 0;
    min-width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.agreement-label a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
    display: inline;
}

.agreement-label a:hover {
    color: var(--secondary);
}

#privacy-agreement:focus-visible + .agreement-label {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.hours {
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}
.gaming-insights {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
}

.insights-title {
    font-size: 2.5rem;
    text-align: center;
    color: #2d3436;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.insights-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 2px;
}

.insights-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.insight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.insight-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.insight-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin: 0;
}

.insight-content {
    padding: 25px;
}

.insight-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.insight-content p:last-child {
    margin-bottom: 0;
}

.insights-footnote {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0984e3;
    font-size: 0.95rem;
    color: #555;
}

.insights-footnote i {
    color: #0984e3;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .insights-title {
        font-size: 2rem;
    }
    
    .insights-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gaming-insights {
        padding: 60px 0;
    }
    
    .insights-title {
        font-size: 1.8rem;
    }
    
    .insight-header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .insight-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .insight-content {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .insights-title {
        font-size: 1.6rem;
    }
    
    .insight-card h3 {
        font-size: 1.2rem;
    }
    
    .insight-content p {
        font-size: 0.95rem;
    }
}
.zb {
    padding: 80px 0;
    background-color: #f0f2f5;
    background-image: linear-gradient(to bottom, #f5f7fa 0%, #e4e8ec 100%);
}

.xd {
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.xd::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e94560, #1a1a2e);
    border-radius: 2px;
}

.we {
    text-align: center;
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 300;
}

.rf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tg {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e0e3e7;
}

.tg:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.yh {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.uj {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.3rem;
}

.tg h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.ik {
    padding: 25px;
}

.ik p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

.op {
    background: #e8f4f8;
    padding: 18px 25px;
    border-radius: 6px;
    border-left: 4px solid #0f3460;
    font-size: 0.95rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.op i {
    color: #0f3460;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .xd {
        font-size: 2rem;
    }
    
    .we {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .rf {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zb {
        padding: 60px 0;
    }
    
    .xd {
        font-size: 1.8rem;
    }
    
    .yh {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .uj {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .ik {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .xd {
        font-size: 1.6rem;
    }
    
    .tg h3 {
        font-size: 1.2rem;
    }
    
    .ik p {
        font-size: 0.95rem;
    }
    
    .op {
        padding: 15px;
        font-size: 0.9rem;
    }
}
.ab {
    padding: 80px 0;
    background-color: #0f0e17;
    color: #fffffe;
}

.ef {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
    color: #fffffe;
}

.ef::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #eebbc3, #b8c1ec);
    border-radius: 2px;
}

.gh {
    text-align: center;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 300;
    color: #a7a9be;
}

.ij {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.kl {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #242629;
}

.kl:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.mn {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #7f5af0 0%, #2cb67d 100%);
}

.op {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.3rem;
    color: #fffffe;
}

.kl h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    color: #fffffe;
}

.qr {
    padding: 25px;
}

.qr p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #94a1b2;
}

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

.st {
    background: #242629;
    padding: 18px 25px;
    border-radius: 6px;
    border-left: 4px solid #7f5af0;
    font-size: 0.95rem;
    color: #94a1b2;
    max-width: 800px;
    margin: 0 auto;
}

.st i {
    color: #2cb67d;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .ef {
        font-size: 2rem;
    }
    
    .gh {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .ij {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ab {
        padding: 60px 0;
    }
    
    .ef {
        font-size: 1.8rem;
    }
    
    .mn {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .op {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .qr {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .ef {
        font-size: 1.6rem;
    }
    
    .kl h3 {
        font-size: 1.2rem;
    }
    
    .qr p {
        font-size: 0.95rem;
    }
    
    .st {
        padding: 15px;
        font-size: 0.9rem;
    }
}
.pn {
    padding: 80px 0;
    background-color: #fff;
    color: #fffffe;
}

.rk {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.rk::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff8906, #e53170);
    border-radius: 2px;
}

.sj {
    text-align: center;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 300;
    color: #a7a9be;
}

.tg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.uf {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.4s ease-out;
}

.uf:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.vw {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #e53170 0%, #ff8906 100%);
}

.xy {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    transform: rotate(15deg);
}

.uf h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.zb {
    padding: 25px;
}

.zb p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #94a1b2;
}

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

.cd {
    background: #242629;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff8906;
    font-size: 0.95rem;
    color: #94a1b2;
    max-width: 800px;
    margin: 0 auto;
}

.cd i {
    color: #e53170;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .rk {
        font-size: 2rem;
    }
    
    .sj {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .tg {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pn {
        padding: 60px 0;
    }
    
    .rk {
        font-size: 1.8rem;
    }
    
    .vw {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .xy {
        margin-right: 0;
        margin-bottom: 15px;
        transform: none;
    }
    
    .zb {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .rk {
        font-size: 1.6rem;
    }
    
    .uf h3 {
        font-size: 1.3rem;
    }
    
    .zb p {
        font-size: 0.95rem;
    }
    
    .cd {
        padding: 15px;
        font-size: 0.9rem;
    }
}
.mk {
    padding: 80px 0;
    background-color: #e8f4fa;
    background-image: linear-gradient(to bottom, #e8f4fa 0%, #d4e7f5 100%);
}

.ol {
    font-size: 2.5rem;
    text-align: center;
    color: #0a2948;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.ol::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    border-radius: 2px;
}

.pq {
    text-align: center;
    font-size: 1.25rem;
    color: #4a6fa5;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 300;
}

.rs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tu {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #3a7bd5;
}

.tu:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vw {
    display: flex;
    align-items: center;
    padding: 25px;
}

.xy {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.4rem;
    color: white;
}

.tu h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #0a2948;
}

.yz {
    padding: 0 25px 25px;
}

.yz p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.ab {
    background: black;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.cd h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.ef {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gh {
    background: #f5f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3a7bd5;
}

.gh h5 {
    color: #0a2948;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.ij {
    list-style: none;
    padding: 0;
}

.ij li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.ij span {
    font-weight: 600;
    color: #0a2948;
    display: inline-block;
    min-width: 140px;
}

.kl {
    text-align: center;
    font-size: 0.9rem;
    color: #4a6fa5;
    margin-top: 20px;
}

.kl i {
    color: #3a7bd5;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .ol {
        font-size: 2rem;
    }
    
    .pq {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .rs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mk {
        padding: 60px 0;
    }
    
    .ol {
        font-size: 1.8rem;
    }
    
    .vw {
        padding: 20px;
    }
    
    .xy {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .tu h3 {
        font-size: 1.3rem;
    }
    
    .yz {
        padding: 0 20px 20px;
    }
    
    .ef {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .ol {
        font-size: 1.6rem;
    }
    
    .ij span {
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .kl {
        font-size: 0.8rem;
    }
}
.zx {
    padding: 80px 0;
    background-color: #fffffe;
    background-image: linear-gradient(to bottom, #fffffe 0%, #f2f4f6 100%);
}

.bn {
    font-size: 2.5rem;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.bn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e53170, #ff8906);
    border-radius: 2px;
}

.vm {
    text-align: center;
    font-size: 1.25rem;
    color: #2e2e2e;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 300;
}

.kl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.jh {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e4e4e4;
}

.jh:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gf {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #e53170 0%, #ff8906 100%);
}

.fd {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.4rem;
    color: white;
}

.jh h3 {
    font-size: 1.4rem;
    margin: 0;
    color: white;
}

.sa {
    padding: 25px;
}

.sa p {
    color: #2e2e2e;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.po {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.iu h4 {
    color: #0d0d0d;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.yt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.re {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.wq {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e53170 0%, #ff8906 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.tg {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 5px;
}

.fh {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.mn {
    text-align: center;
    font-size: 0.9rem;
    color: black;
    margin-top: 20px;
}

.mn i {
    color: #ff8906;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .bn {
        font-size: 2rem;
    }
    
    .vm {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .kl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zx {
        padding: 60px 0;
    }
    
    .bn {
        font-size: 1.8rem;
    }
    
    .gf {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .fd {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .sa {
        padding: 20px;
    }
    
    .yt {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 320px) {
    .bn {
        font-size: 1.6rem;
    }
    
    .jh h3 {
        font-size: 1.3rem;
    }
    
    .sa p {
        font-size: 0.95rem;
    }
    
    .yt {
        grid-template-columns: 1fr;
    }
    
    .tg {
        font-size: 1.5rem;
    }
    
    .mn {
        font-size: 0.8rem;
    }
}

.pp-header {
    background-color: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.pp-logo img {
    height: auto;
    transition: opacity 0.3s ease;
}

.pp-logo img:hover {
    opacity: 0.9;
}

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

.pp-mobile-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.pp-mobile-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.pp-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.pp-nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.pp-nav-link:hover {
    color: #a29bfe;
}

.pp-nav-link.active {
    color: #6c5ce7;
    font-weight: 600;
}

.pp-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6c5ce7;
}

.pp-main {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.pp-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.pp-title {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.pp-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 2px;
}

.pp-date {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.pp-sections {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.pp-section {
    margin-bottom: 40px;
}

.pp-section:last-child {
    margin-bottom: 0;
}

.pp-heading {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin: 30px 0 15px;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.pp-list {
    padding-left: 20px;
    margin: 15px 0;
}

.pp-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.7;
}

.pp-list li::before {
    content: '•';
    color: #6c5ce7;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -1px;
}

.pp-footer {
    background-color: #0f0e17;
    color: #fff;
    padding: 50px 0 20px;
}

.pp-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.pp-footer-info img {
    margin-bottom: 15px;
}

.pp-footer-info p {
    color: #a7a9be;
    line-height: 1.6;
}

.pp-footer-links h3,
.pp-footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.pp-footer-links ul,
.pp-footer-contact ul {
    list-style: none;
    padding: 0;
}

.pp-footer-links li,
.pp-footer-contact li {
    margin-bottom: 10px;
}

.pp-footer-links a {
    color: #a7a9be;
    transition: color 0.3s ease;
}

.pp-footer-links a:hover {
    color: #6c5ce7;
}

.pp-footer-contact i {
    color: #6c5ce7;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.pp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pp-footer-legal {
    display: flex;
    gap: 20px;
}

.pp-footer-legal a {
    color: #a7a9be;
    transition: color 0.3s ease;
}

.pp-footer-legal a:hover {
    color: #6c5ce7;
}

@media (max-width: 768px) {
    .pp-title {
        font-size: 2rem;
    }
    
    .pp-sections {
        padding: 30px;
    }
    
    .pp-heading {
        font-size: 1.3rem;
    }
    
    .pp-menu {
        display: none;
    }
    
    .pp-mobile-btn {
        display: block;
    }
    
    .pp-nav-link.active::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .pp-main {
        padding: 40px 0;
    }
    
    .pp-title {
        font-size: 1.8rem;
    }
    
    .pp-sections {
        padding: 20px;
    }
    
    .pp-footer-content {
        grid-template-columns: 1fr;
    }
    
    .pp-footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 320px) {
    .pp-title {
        font-size: 1.6rem;
    }
    
    .pp-date {
        font-size: 0.9rem;
    }
    
    .pp-list li {
        font-size: 0.95rem;
    }
}
.legal-page {
    padding: 60px 0;
    background-color: var(--light);
}

.legal-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.9;
}

.legal-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.legal-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 20px;
    margin: 15px 0;
}

.legal-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.legal-section li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-notice {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 50px 0;
    }
    
    .legal-container {
        margin-top: -30px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}
.thanks-page {
    background-color: var(--light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thanks-content {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px 40px;
    text-align: center;
}

.thanks-icon {
    color: var(--success);
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-in-out;
}

.thanks-content h1 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.thanks-message {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details p {
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-details i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.thanks-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.thanks-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .thanks-content {
        padding: 40px 30px;
    }
    
    .thanks-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .thanks-content {
        padding: 30px 20px;
    }
    
    .thanks-icon {
        font-size: 3rem;
    }
    
    .thanks-details {
        padding: 15px;
    }
    
    .thanks-button {
        padding: 10px 20px;
    }
}
.reviews-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-info img {
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.rating {
    color: var(--warning);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
    }
}