/* 全局样式 */
:root {
    --primary-color: #ff6433;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #e0e0e0;
    --dark-gray: #666;
    --hero-bg: #1a1a1a;
    /* 深黑色背景 */
}

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

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: 4rem;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

p {
    margin-bottom: 15px;
}

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

ul {
    list-style: none;
}


.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #e05327;
    transform: translateY(-2px);
}

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

section {
    padding: 70px 0;
}

/* 头部样式 */
header {
    background-color: rgba(255, 255, 255, 0.51);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

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

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.contact-btn .btn {
    font-size: 0.8rem;
}

/* 英雄区块样式 */
.hero {
    background-color: var(--hero-bg);
    background-image: url('images/services-vr-game-hero-1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.066);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero h1 {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 800;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    text-align: left;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-image {
    max-width: 1200px;
    position: relative;
    overflow: visible;
    z-index: 5;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 662px;
    position: relative;
    right: -200px;
    z-index: 5;
    transform: scale(1.2);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 为什么选择VR区块样式 */
.why-vr {
    background-color: var(--white);
    padding: 80px 0;
}

.why-vr h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-align: center;
}

.vr-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.vr-text {
    flex: 1;
}

.vr-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.vr-image {
    flex: 1;
    max-width: 550px;
}

.character-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
}

/* Magic Media区块样式 */
.magic-media {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.magic-media h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.media-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.media-text {
    flex: 2;
}

.media-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.media-logo {
    flex: 1;
    text-align: center;
}

.media-logo img {
    max-width: 350px;
    width: 100%;
}

/* VR服务区块样式 */
.vr-services {
    background-color: var(--primary-color);
    background-image: url('images/partners-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    position: relative;
}

.vr-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 100, 51, 0.95);
    z-index: 1;
}

.vr-services .container {
    position: relative;
    z-index: 2;
}

.vr-services h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
}

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

.service-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 15px;
    font-weight: 600;
}

/* 技术专长区块样式 */
.tech-expertise {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.tech-expertise h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.tech-expertise p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.tech-list {
    list-style-type: disc;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-list li {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
    line-height: 1.5;
}

.tech-list li:before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* CTA横幅区块样式 */
.cta-banner {
    background-color: #1a1a1a;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    margin-bottom: 15px;
    font-size: 2.8rem;
    color: var(--white);
}

.cta-banner p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--white);
}

.cta-banner .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* 为什么选择Starloop区块样式 */
.why-starloop {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-starloop h2 {
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.why-starloop-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ninja-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-start;
    max-width: 45%;
}

.ninja-image {
    max-width: 100%;
    height: auto;
    position: relative;
    left: -260px;
}

.reasons-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reason-box {
    background-color: var(--light-gray);
    padding: 30px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.reason-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.reason-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.reason-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* 相关服务区块样式 */
.related-services {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.related-services h2 {
    color: var(--white);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.service-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-box a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.see-more {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    margin-top: 40px;
    font-size: 1.1rem;
    padding: 10px 25px;
    border: 2px solid var(--white);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.see-more:hover {
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
}

/* FAQ区块样式 */
.faq {
    background-color: var(--white);
    padding: 80px 0;
}

.faq h2 {
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding: 20px 50px 20px 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    margin: 0;
    background-color: var(--white);
}

.faq-question h3::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question.active h3 {
    color: var(--primary-color);
}

.faq-question.active h3::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-question.active+.faq-answer {
    display: block;
}

/* FAQ表单部分 */
.faq-form {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
}

.faq-form h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-form-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.faq-form-fields .form-field {
    margin-bottom: 20px;
}

.faq-form-fields .form-field input,
.faq-form-fields .form-field select,
.faq-form-fields .form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--text-color);
}

.faq-form-fields .form-field input:focus,
.faq-form-fields .form-field select:focus,
.faq-form-fields .form-field textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.7);
}

.faq-form-fields .form-field textarea {
    height: 150px;
    resize: none;
}

.faq-form-fields .form-field.consent {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.faq-form-fields .form-field.consent input {
    width: auto;
    margin-right: 15px;
    margin-top: 6px;
}

.faq-form-fields .form-field button {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-form-fields .form-field button:hover {
    background-color: #333;
}

.faq-form-icon {
    position: absolute;
    right: -260px;
    bottom: -100px;
    width: 400px;
    height: auto;
    z-index: 1;
}

/* 客户信任区块样式 */
.trusted-by {
    background-color: var(--primary-color);
    text-align: center;
    padding: 80px 0;
}

.trusted-by h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.trusted-by p {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
    align-items: center;
}

.client-logo {
    padding: 20px;
    opacity: 0.9;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    filter: brightness(0) invert(1);
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.2);
}

/* 客户故事区块样式 */
.client-stories {
    background-color: var(--white);
    padding: 80px 0;
}

.client-stories h2 {
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 10px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.testimonial-content p strong {
    color: var(--primary-color);
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author p {
    margin-bottom: 5px;
}

.testimonial-author p strong {
    color: var(--secondary-color);
}

/* 联系表单区块样式 */
.contact-form {
    background-color: #ff6433;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.contact-form h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-form>.container>p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.contact-form-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-form-content {
    flex: 1;
    padding-right: 30px;
}

.contact-form form {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.7);
}

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

.form-group.consent {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.form-group.consent input {
    width: auto;
    margin-right: 15px;
    margin-top: 6px;
}

.form-group button {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background-color: #333;
}

.contact-form-image {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.warrior-image {
    height: 700px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    right: -260px;
    left: auto;
    z-index: 10;
}

/* 页脚样式 */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

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

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    margin-top: 30px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: #e05327;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bbb;
    margin-right: 30px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.copyright {
    color: #bbb;
    font-size: 0.95rem;
}

/* Cookie提示样式 */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    max-width: 350px;
}

.cookie-notice p {
    margin: 0;
    margin-right: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.accept-btn {
    padding: 8px 15px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

/* 文本对齐工具类 */
.text-center {
    text-align: center !important;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero h2 {
        text-align: center;
    }

    .hero-image {
        max-width: 80%;
    }

    .why-starloop-content {
        flex-direction: column;
    }

    .ninja-image-container {
        margin: 0 auto 30px;
        text-align: center;
        flex: none;
        width: 80%;
        max-width: 100%;
    }

    .ninja-image {
        left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list,
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reasons-image {
        width: 300px;
        right: -50px;
    }

    .tech-list {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        flex-direction: column;
    }

    .contact-form-image {
        margin-top: 40px;
        position: relative;
        height: 500px;
        overflow: visible;
    }

    .warrior-image {
        height: 500px;
        position: absolute;
        right: 0;
        bottom: -100px;
        z-index: 10;
    }

    .faq-form-icon {
        width: 300px;
        right: -50px;
        bottom: -80px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .vr-content,
    .media-content {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid,
    .services-list,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .reasons-image {
        display: none;
    }

    .faq-form-fields {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group.half {
        width: 100%;
    }

    .contact-form h2 {
        font-size: 2.5rem;
    }

    .warrior-image {
        height: 450px;
        right: -20px;
        left: auto;
        bottom: -80px;
        z-index: 10;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 100%;
    }

    .character-image {
        max-height: none;
    }

    .ninja-image-container {
        width: 100%;
    }

    .faq-form {
        overflow: hidden;
    }

    .faq-form-icon {
        width: 250px;
        right: -30px;
        bottom: -50px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 100px 0;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .services-grid,
    .reasons-grid,
    .services-list,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .service-item,
    .service-box {
        padding: 25px 15px;
    }

    .testimonial {
        padding: 25px;
    }

    section {
        padding: 50px 0;
    }

    .cookie-notice {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }

    .contact-form h2 {
        font-size: 2rem;
    }

    .warrior-image {
        height: 400px;
        right: -10px;
        left: auto;
        bottom: -60px;
        z-index: 10;
    }

    .faq-form {
        padding: 30px 20px;
    }

    .faq-form-icon {
        width: 200px;
        right: -20px;
        bottom: -40px;
    }
}