body {
    font-family: 'Hind', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f5f7fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Smooch Sans', sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

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

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

:root {
    --ax-primary: #1a936f;
    --ax-secondary: #114b5f;
    --ax-accent: #88d498;
    --ax-gradient: linear-gradient(135deg, var(--ax-primary), var(--ax-secondary));
    --ax-light: #f5f7fa;
    --ax-dark: #1e1e24;
    --ax-text: #333;
    --ax-text-light: #777;
}

.ax-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Hind', sans-serif;
}

.ax-btn-primary {
    width: 100%;
    max-width: 222px;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    background: var(--ax-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 147, 111, 0.3);
}

.ax-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 147, 111, 0.4);
}

.ax-btn-play {
    background: #e63946;
    color: white;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.ax-btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.ax-btn-learn {
    width: 100%;
    max-width: 150px;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    background: transparent;
    color: var(--ax-primary);
    border: 2px solid var(--ax-primary);
    margin-left: 15px;
}

.ax-btn-learn:hover {
    background: var(--ax-primary);
    color: white;
}

.ax-btn-submit, .ax-btn-subscribe {
    background: var(--ax-gradient);
    color: white;
    cursor: pointer;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 15px;
}

.ax-btn-submit:hover, .ax-btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 147, 111, 0.4);
}

.ax-ageVerification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.ax-ageVerification-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.ax-ageVerification-content h2 {
    color: var(--ax-primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.ax-ageVerification-content p {
    margin-bottom: 30px;
    font-size: 16px;
}

.ax-ageVerification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ax-cookieNotice-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--ax-dark);
    color: white;
    padding: 15px 5%;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
}

.ax-cookieNotice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;    
    margin: 0 auto;
}

.ax-cookieNotice-content p {
    margin: 0;
    flex: 1;
}

.ax-cookieNotice-content a {
    color: var(--ax-accent);
    text-decoration: underline;
}

.ax-cookieNotice-accept {
    margin-left: 20px;
    padding: 8px 20px;
    font-size: 14px;
}

.ax-header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.ax-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.ax-logo-box {
    display: flex;
    flex-direction: column;
}

.ax-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--ax-primary);
    margin: 0;
}

.ax-logo-subtext {
    font-size: 12px;
    color: var(--ax-text-light);
    margin: 0;
    letter-spacing: 1px;
}

.ax-nav-primary ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ax-nav-primary li {
    margin-left: 30px;
}

.ax-nav-primary a {
    color: var(--ax-text);
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

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

.ax-nav-primary i {
    margin-right: 8px;
    font-size: 16px;
}

.ax-btn-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--ax-primary);
    cursor: pointer;
}

.ax-section-hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../ax-image/ax-background-image-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.ax-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.ax-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ax-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.ax-hero-title span {
    color: var(--ax-accent);
}

.ax-hero-text {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 30px;
}

.ax-hero-buttons {
    display: flex;
}

.ax-section-game {
    padding: 100px 5%;
    background: white;
}

.ax-game-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
}

.ax-game-preview {
    flex: 1;
    position: relative;
}

.ax-game-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ax-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.ax-game-frame:hover .ax-game-overlay {
    opacity: 1;
}

.ax-btn-try {
    background: var(--ax-accent);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.ax-btn-try:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ax-game-details {
    flex: 1;
}

.ax-game-title {
    font-size: 36px;
    color: var(--ax-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.ax-game-title i {
    margin-right: 15px;
    color: var(--ax-accent);
}

.ax-game-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--ax-text);
}

.ax-game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.ax-feature-item {
    flex: 1 1 200px;
    background: var(--ax-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.ax-feature-item:hover {
    transform: translateY(-10px);
}

.ax-feature-item i {
    font-size: 40px;
    color: var(--ax-primary);
    margin-bottom: 15px;
}

.ax-feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ax-feature-item p {
    color: var(--ax-text-light);
    font-size: 14px;
}

.ax-game-cta {
    text-align: center;
}

.ax-game-note {
    font-size: 14px;
    color: var(--ax-text-light);
    margin-top: 25px;
}

.ax-game-note i {
    color: var(--ax-accent);
    margin-right: 5px;
}

.ax-section-features {
    padding: 100px 5%;
    background: var(--ax-light);
}

.ax-features-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.ax-section-title {
    font-size: 36px;
    color: var(--ax-primary);
    margin-bottom: 15px;
}

.ax-section-title i {
    color: var(--ax-accent);
    margin-right: 15px;
}

.ax-section-subtitle {
    font-size: 18px;
    color: var(--ax-text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.ax-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ax-feature-card {
    flex: 1 1 300px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
}

.ax-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ax-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--ax-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.ax-feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--ax-primary);
}

.ax-feature-card p {
    color: var(--ax-text-light);
}

.ax-section-testimonials {
    padding: 100px 5%;
    position: relative;
    background-image: url('../ax-image/ax-background-image-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ax-testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;    
    width: 100%;
    height: 100%;
    background: rgba(17, 75, 95, 0.9);
}

.ax-testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.ax-testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.ax-testimonial-item {
    flex: 1 1 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
}

.ax-testimonial-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.ax-testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.ax-testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
}

.ax-testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ax-testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--ax-accent);
}

.ax-testimonial-author h4 {
    margin: 0;
    font-size: 18px;
}

.ax-testimonial-author p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--ax-accent);
}

.ax-section-contact {
    padding: 100px 5%;
    background: white;
}

.ax-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.ax-contact-info {
    flex: 1;
}

.ax-contact-details {
    margin-top: 40px;
}

.ax-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.ax-contact-item-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ax-contact-item i {
    font-size: 24px;
    color: var(--ax-primary);
    margin-right: 20px;
    margin-top: 5px;
}

.ax-contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ax-contact-item p {
    color: var(--ax-text-light);
}

.ax-contact-form {
    flex: 1;
    width: 100%;
    max-width: 500px;
    background: var(--ax-light);
    padding: 40px;
    border-radius: 10px;
}

.ax-form-group {
    margin-bottom: 20px;
}

.ax-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.ax-form-group input,
.ax-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Hind', sans-serif;
    transition: all 0.3s;
}

.ax-form-group input:focus,
.ax-form-group textarea:focus {
    border-color: var(--ax-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 147, 111, 0.1);
}

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

.ax-validation-message {
    color: #e63946;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.ax-form-checkbox {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.ax-form-checkbox input {
    margin-right: 10px;
}

.ax-form-checkbox label {
    font-size: 14px;
    margin: 0;
}

.ax-form-checkbox a {
    color: var(--ax-primary);
    text-decoration: underline;
}

.ax-section-responsible {
    padding: 80px 5%;
    background: #f8f9fa;
}

.ax-responsible-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.ax-responsible-content {
    flex: 1;
}

.ax-responsible-content h2 {
    color: var(--ax-primary);
    margin-bottom: 20px;
    font-size: 36px;
}

.ax-responsible-content h2 i {
    margin-right: 15px;
}

.ax-responsible-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.ax-responsible-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ax-responsible-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.ax-responsible-list i {
    color: var(--ax-primary);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 3px;
}

.ax-responsible-resources {
    margin-top: 40px;
}

.ax-responsible-resources p {
    font-weight: 600;
    margin-bottom: 15px;
}

.ax-btn-support {
    display: inline-block;
    padding: 12px 25px;
    background: var(--ax-secondary);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.ax-btn-support:hover {
    background: var(--ax-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ax-btn-support i {
    margin-right: 10px;
}

.ax-responsible-image {
    flex: 1;
}

.ax-responsible-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ax-footer-main {
    background: var(--ax-dark);
    color: white;
    padding: 80px 5% 30px;
}

.ax-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.ax-footer-about {
    flex: 2;
    max-width: 300px;
}

.ax-footer-logo {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.ax-footer-about p {
    color: #aaa;
    margin-bottom: 20px;
}

.ax-footer-links, .ax-footer-legal {
    flex: 1;
    min-width: 200px;
}

.ax-footer-links h3, .ax-footer-legal h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.ax-footer-links h3::after, .ax-footer-legal h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--ax-accent);
}

.ax-footer-links ul, .ax-footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ax-footer-links li, .ax-footer-legal li {
    margin-bottom: 12px;
}

.ax-footer-links a, .ax-footer-legal a {
    color: #aaa;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.ax-footer-links a:hover, .ax-footer-legal a:hover {
    color: white;
    padding-left: 5px;
}

.ax-footer-links i, .ax-footer-legal i {
    margin-right: 10px;
    font-size: 12px;
    color: var(--ax-accent);
}

.ax-footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 14px;
}

.ax-btn-top {
    position: fixed;
    bottom: 177px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--ax-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

.ax-btn-top.active {
    opacity: 1;
    visibility: visible;
}

.ax-btn-top:hover {
    background: var(--ax-secondary);
    transform: translateY(-5px);
}

.ax-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.ax-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ax-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: axModalFadeIn 0.4s;
}

.ax-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #777;
    cursor: pointer;
    transition: all 0.3s;
}

.ax-modal-close:hover {
    color: var(--ax-primary);
    transform: rotate(90deg);
}

.ax-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.ax-btn-confirm, .ax-btn-accept {
    background: var(--ax-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.ax-btn-confirm:hover, .ax-btn-accept:hover {
    background: var(--ax-secondary);
    transform: translateY(-3px);
}

.ax-btn-exit, .ax-btn-decline {
    background: #f5f7fa;
    color: var(--ax-text);
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.ax-btn-exit:hover, .ax-btn-decline:hover {
    background: #e0e5eb;
}

.ax-success-icon {
    text-align: center;
    margin-bottom: 20px;
}

.ax-success-icon i {
    font-size: 60px;
    color: var(--ax-primary);
}

.ax-modal-success h2 {
    text-align: center;
    margin-bottom: 15px;
}

.ax-success-message {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}

.ax-btn-close-modal {
    background: var(--ax-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s;
}

.ax-btn-close-modal:hover {
    background: var(--ax-secondary);
    transform: translateY(-3px);
}

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

@media (max-width: 1024px) {
    .ax-cookieNotice-content {
        width: 85%;
    }

    .ax-hero-title {
        font-size: 42px;
    }
    
    .ax-game-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .ax-contact-container {
        flex-direction: column;
    }
    
    .ax-contact-form {
        width: 99%;
        margin-top: 50px;
        padding: 40px 5px;
    }

    .ax-form-group input, 
    .ax-form-group textarea, 
    .ax-btn-submit {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .ax-nav-primary {
        position: fixed;
        top: 77px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: all 0.4s;
    }
    
    .ax-nav-primary.active {
        transform: translateY(0);
    }
    
    .ax-nav-primary ul {
        flex-direction: column;
    }
    
    .ax-nav-primary li {
        margin: 0;
        text-align: center;
    }
    
    .ax-nav-primary a {
        padding: 15px;
        justify-content: center;
    }
    
    .ax-btn-menu {
        display: block;
    }
    
    .ax-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .ax-btn-learn {
        margin-left: 0;
    }
    
    .ax-feature-card {
        flex: 1 1 100%;
    }

    .ax-responsible-container {
        flex-direction: column;
    }
    
    .ax-responsible-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .ax-cookieNotice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ax-cookieNotice-accept {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .ax-hero-title {
        font-size: 32px;
    }
    
    .ax-hero-text {
        font-size: 18px;
    }
    
    .ax-section-title {
        font-size: 28px;
    }
    
    .ax-modal-content {
        padding: 30px 20px;
    }
    
    .ax-modal-buttons {
        flex-direction: column;
    }

    .ax-contact-item {
        justify-content: center;
        align-items: center;
    }
    
    .ax-footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 320px) {
    .ax-hero-title {
        font-size: 28px;
    }
    
    .ax-header-container {
        padding: 15px 3%;
    }
    
    .ax-logo-text {
        font-size: 24px;
    }
    
    .ax-section-hero, .ax-section-game, .ax-section-features, .ax-section-testimonials, .ax-section-contact {
        padding: 80px 3% 60px;
    }
}

.axpage-contact {
    padding: 60px 0;
    background-color: #f5f7fa;
}

.axpage-contact-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a936f, #88d498);
    padding: 60px 0;
    color: white;
}

.axpage-contact-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.axpage-contact-header p {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .axpage-contact-header h2 {
        font-size: 32px;
    }
}

.axpage-faq {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.axpage-faq-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #114b5f, #1a936f);
    padding: 60px 0;
    color: white;
}

.axpage-faq-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.axpage-faq-header p {
    font-size: 18px;
    opacity: 0.9;
}

.axpage-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.axpage-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.axpage-faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Smooch Sans', sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.axpage-faq-question:hover {
    background: #f5f7fa;
}

.axpage-faq-question i:first-child {
    margin-right: 15px;
    color: var(--ax-primary);
    font-size: 20px;
}

.axpage-faq-question i:last-child {
    margin-left: 15px;
    transition: transform 0.3s;
}

.axpage-faq-question.active i:last-child {
    transform: rotate(45deg);
}

.axpage-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9f9f9;
}

.axpage-faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.axpage-faq-answer a {
    color: var(--ax-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .axpage-faq-header h2 {
        font-size: 32px;
    }
    
    .axpage-faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .axpage-faq-question {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .axpage-faq-question i:last-child {
        margin-left: 0;
        margin-top: 10px;
    }
}

.axpage-responsible-gaming {
    padding: 60px 0;
    background-color: #f0f5f3;
}

.axpage-responsible-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a936f, #88d498);
    padding: 60px 0;
    color: white;
}

.axpage-responsible-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.axpage-responsible-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.axpage-responsible-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.axpage-responsible-card:hover {
    transform: translateY(-10px);
}

.axpage-responsible-card i {
    font-size: 40px;
    color: var(--ax-primary);
    margin-bottom: 20px;
}

.axpage-responsible-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--ax-secondary);
}

.axpage-responsible-card p {
    color: #555;
    line-height: 1.6;
}

.axpage-responsible-card a {
    color: var(--ax-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .axpage-responsible-header h2 {
        font-size: 32px;
    }
    
    .axpage-responsible-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .axpage-responsible-grid {
        grid-template-columns: 1fr;
    }
}

.axpage-cookie-policy {
    padding: 60px 0;
    background-color: #f5f7fa;
}

.axpage-cookie-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #114b5f, #1a936f);
    padding: 60px 0;
    color: white;
}

.axpage-cookie-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.axpage-cookie-header p {
    font-size: 18px;
    opacity: 0.9;
}

.axpage-cookie-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.axpage-cookie-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.axpage-cookie-list li {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--ax-primary);
}

.axpage-cookie-list h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--ax-secondary);
    display: flex;
    align-items: center;
}

.axpage-cookie-list h3 i {
    margin-right: 10px;
    font-size: 18px;
}

.axpage-cookie-list p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .axpage-cookie-header h2 {
        font-size: 32px;
    }
    
    .axpage-cookie-content {
        padding: 30px 5px;
    }
}

@media (max-width: 480px) {
    .axpage-cookie-list {
        grid-template-columns: 1fr;
    }
}

.axpage-privacy-policy {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.axpage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.axpage-privacy-header {
    text-align: center;
    margin-bottom: 50px;
    background: var(--ax-gradient);
    padding: 60px 0;
    color: white;
}

.axpage-privacy-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.axpage-privacy-header p {
    font-size: 18px;
    opacity: 0.9;
}

.axpage-privacy-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.axpage-privacy-list {
    list-style: none;
    padding: 0;
    counter-reset: privacy-counter;
}

.axpage-privacy-list li {
    counter-increment: privacy-counter;
    margin-bottom: 40px;
    padding-left: 70px;
    position: relative;
}

.axpage-privacy-list li::before {
    content: counter(privacy-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--ax-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.axpage-privacy-list h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--ax-primary);
    display: flex;
    align-items: center;
}

.axpage-privacy-list h3 i {
    margin-right: 10px;
    font-size: 20px;
}

.axpage-privacy-list p {
    color: #555;
    line-height: 1.7;
}

.axpage-privacy-list a {
    color: var(--ax-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .axpage-privacy-header h2 {
        font-size: 32px;
    }
    
    .axpage-privacy-content {
        padding: 30px;
    }
    
    .axpage-privacy-list li {
        padding-left: 60px;
    }
    
    .axpage-privacy-list li::before {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .axpage-privacy-list li {
        padding-left: 0;
        padding-top: 50px;
    }
    
    .axpage-privacy-list li::before {
        top: -10px;
        left: 0;
    }
}