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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Navigation Sidebar */
.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-brand {
    margin-bottom: 3rem;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-links a {
    padding: 0.75rem 1rem;
    color: #b8b8b8;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-cta {
    margin-top: 2rem;
}

.btn-nav {
    display: block;
    padding: 0.875rem 1.5rem;
    background: #4a90e2;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-nav:hover {
    background: #357abd;
}

/* Content Wrapper */
.content-wrapper {
    margin-left: 260px;
    min-height: 100vh;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4a90e2;
    color: #ffffff;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hero Magazine Style */
.hero-magazine {
    background: #f8f9fa;
    padding: 4rem 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.hero-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.hero-main {
    flex: 1.2;
    min-width: 0;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-magazine h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1.5px;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 600px;
}

.hero-secondary {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-quote {
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #4a90e2;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
}

.hero-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.875rem;
    color: #666;
    font-weight: 600;
}

/* Editorial Columns */
.intro-editorial {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.editorial-columns {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.column-wide {
    flex: 2;
    min-width: 0;
}

.column-narrow {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.editorial-columns h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.editorial-columns p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.stat-box {
    padding: 2rem;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Story Grid - Magazine Layout */
.story-grid {
    padding: 5rem 3rem;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.story-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.story-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.game-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.game-card.featured {
    flex: 1 1 100%;
    display: flex;
    gap: 2rem;
}

.game-card.featured img {
    width: 50%;
    height: 400px;
    object-fit: cover;
}

.game-card.featured .game-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-card:not(.featured) {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.game-card:not(.featured) img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.game-content {
    padding: 1.5rem;
}

.game-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e8f4ff;
    color: #4a90e2;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.game-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.link-inline {
    color: #4a90e2;
    font-weight: 600;
    font-size: 0.95rem;
}

.link-inline:hover {
    text-decoration: underline;
}

/* Insight Section */
.insight-section {
    padding: 6rem 3rem;
    background: #ffffff;
}

.insight-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-image {
    flex: 1;
    min-width: 0;
}

.insight-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

.insight-content {
    flex: 1;
    min-width: 0;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e8f4ff;
    color: #4a90e2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.insight-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.insight-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.testimonial-inline {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-left: 4px solid #4a90e2;
    margin-bottom: 1.5rem;
    border-radius: 0 6px 6px 0;
}

.testimonial-inline p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.875rem;
    color: #666;
    font-weight: 600;
}

/* Skills Learned */
.skills-learned {
    padding: 5rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.skills-learned h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.skills-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.skill-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.skill-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.skill-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.skill-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* CTA Break */
.cta-break {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-content .btn-large {
    background: #ffffff;
    color: #667eea;
}

.cta-content .btn-large:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Timeline */
.timeline-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.375rem;
    top: 0.5rem;
    width: 15px;
    height: 15px;
    background: #4a90e2;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #4a90e2;
}

.timeline-year {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.timeline-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Services Preview */
.services-preview {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.125rem;
    color: #555;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-card .price {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 0;
}

.service-image {
    flex: 1;
    min-width: 0;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-pricing {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #4a90e2;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.price-note {
    display: block;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* Pricing Summary */
.pricing-summary {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 3rem;
    background: #ffffff;
}

.pricing-summary h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.pricing-table {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-service {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4a90e2;
}

.pricing-note {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Form Section */
.form-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.125rem;
    color: #555;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

/* Page Header */
.page-header {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* About Page */
.about-story {
    padding: 5rem 3rem;
    background: #ffffff;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
    min-width: 0;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    min-width: 0;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mission Section */
.mission-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.mission-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.mission-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-role {
    display: block;
    font-size: 0.95rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Values Section */
.values-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-list {
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4a90e2;
    line-height: 1;
}

.value-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 5rem 3rem;
    background: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4a90e2;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: #4a90e2;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 3rem;
    background: #ffffff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.thanks-info {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.75rem;
}

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

.thanks-next h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 200px;
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step p {
    font-size: 1rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thanks-extra {
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-extra h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-extra p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
}

.legal-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.legal-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

.legal-text a {
    color: #4a90e2;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 3rem 2rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: #b8b8b8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #357abd;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.5);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-sidebar {
        width: 220px;
    }

    .content-wrapper {
        margin-left: 220px;
    }

    .hero-magazine h1 {
        font-size: 2.75rem;
    }

    .editorial-columns,
    .hero-layout,
    .insight-layout,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .game-card.featured {
        flex-direction: column;
    }

    .game-card.featured img {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-sidebar.active {
        transform: translateX(0);
    }

    .content-wrapper {
        margin-left: 0;
    }

    .hero-magazine {
        padding: 3rem 1.5rem;
    }

    .hero-magazine h1 {
        font-size: 2.25rem;
    }

    .intro-editorial,
    .story-grid,
    .insight-section,
    .skills-learned,
    .timeline-section,
    .services-preview,
    .form-section,
    .about-story,
    .mission-section,
    .team-section,
    .values-section,
    .contact-info-section,
    .faq-section,
    .services-detailed,
    .pricing-summary {
        padding: 3rem 1.5rem;
    }

    .cta-break {
        padding: 4rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }

    .story-header h2,
    .services-intro h2,
    .mission-section h2,
    .team-section h2,
    .values-section h2,
    .faq-section h2,
    .timeline-section h2 {
        font-size: 2rem;
    }

    .page-header {
        padding: 3rem 1.5rem;
    }

    .header-content h1 {
        font-size: 2.25rem;
    }

    .next-steps {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }

    .service-detail {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-magazine h1 {
        font-size: 1.875rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .thanks-content h1 {
        font-size: 2.25rem;
    }

    .thanks-lead {
        font-size: 1.25rem;
    }
}