/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #E8F0F5; /* Very light grey-blue */
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #2C3E50; /* Darker blue-grey for headings */
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #4A90E2;
}

a {
    color: #4A90E2;
    text-decoration: none;
}

a:hover {
    color: #357ABD;
}

.button.primary-button {
    background-color: #4A90E2;
    color: #FFFFFF;
    border: 1px solid #4A90E2;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button.primary-button:hover {
    background-color: #357ABD;
    border-color: #357ABD;
    color: #FFFFFF;
}

.button.secondary-button {
    background-color: transparent;
    color: #4A90E2;
    border: 1px solid #4A90E2;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.button.secondary-button:hover {
    background-color: #4A90E2;
    color: #FFFFFF;
}

section {
    padding: 5rem 0;
}

.grid-container {
    max-width: 1200px;
}

/* Header Section */
.header-section {
    background-color: #FFFFFF;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-section .logo a {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C3E50;
}

.header-section .logo img {
    height: 40px;
    margin-right: 10px;
}

.main-navigation .menu a {
    color: #555555;
    font-weight: 600;
    padding: 0.7rem 1rem;
}

.main-navigation .menu a:hover {
    color: #4A90E2;
}

.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.menu-icon {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.menu-icon::before {
    content: '\f47e'; /* Bootstrap icon for three dots vertical */
    font-family: 'bootstrap-icons';
    font-size: 2rem;
    color: #4A90E2;
}

/* Off-canvas menu */
.off-canvas {
    background-color: #2C3E50;
}

.off-canvas .vertical.menu a {
    color: #E8F0F5;
    padding: 1rem;
    font-size: 1.1rem;
}

.off-canvas .vertical.menu a:hover {
    background-color: #4A90E2;
    color: #FFFFFF;
}

/* Hero Section */
.hero-section {
    background-image: url('static/graphics/mobile-game-testing-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 10rem 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .grid-container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero-section p.lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #E8F0F5;
}

/* About Us Section */
.about-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.timeline-container {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #4A90E2;
    margin-top: 3rem;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #4A90E2;
    border-radius: 50%;
    border: 3px solid #E8F0F5;
    z-index: 1;
}

.timeline-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888888;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #555555;
}

/* Services Section */
.services-section {
    background-color: #F8FCFF;
    padding: 6rem 0;
}

.service-item {
    margin-bottom: 3rem;
    align-items: stretch;
}

.service-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card .service-icon {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555555;
    flex-grow: 1;
}

.problem-column .service-card {
    border-left: 5px solid #E74C3C;
}

.solution-column .service-card {
    border-left: 5px solid #2ECC71;
}

.problem-column .service-icon {
    color: #E74C3C;
}

.solution-column .service-icon {
    color: #2ECC71;
}

/* Features Section */
.features-section {
    background-color: #E8F0F5;
    padding: 6rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.feature-card .feature-icon {
    font-size: 3.5rem;
    color: #4A90E2;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.7rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555555;
}

/* Pricing Section */
.pricing-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.pricing-toggle .button-group {
    margin-bottom: 3rem;
    border-radius: 5px;
    overflow: hidden;
    display: inline-flex;
}

.pricing-toggle .button-group .button {
    background-color: #F0F5F8;
    color: #555555;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing-toggle .button-group .button.is-active {
    background-color: #4A90E2;
    color: #FFFFFF;
}

.pricing-toggle .button-group .button:hover:not(.is-active) {
    background-color: #DDE8F0;
}

.pricing-plan-group {
    margin-top: 2rem;
}

.pricing-card {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card .card-content {
    background-color: #F8FCFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pricing-card.featured .card-content {
    border-color: #4A90E2;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFC107;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 1rem;
}

.pricing-card .price span {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 5px;
    font-weight: 600;
}

.pricing-card .price-description {
    font-size: 0.95rem;
    color: #777777;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.pricing-card ul {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
    color: #555555;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-card ul li .bi-check-circle-fill {
    color: #2ECC71;
}

.pricing-card ul li .bi-x-circle-fill {
    color: #E74C3C;
}

.pricing-card .button {
    width: 100%;
}

/* Team Section */
.team-section {
    background-color: #E8F0F5;
    padding: 6rem 0;
}

.team-member-card {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-member-card .avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #4A90E2;
}

.team-member-card h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.team-member-card .position {
    font-size: 1.1rem;
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-card .join-date {
    font-size: 0.9rem;
    color: #777777;
}

/* Industries Section */
.industries-section {
    background-color: #F8FCFF;
    padding: 6rem 0;
}

.industry-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.industry-card .industry-icon {
    font-size: 3.5rem;
    color: #4A90E2;
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    font-size: 1.7rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #555555;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #E8F0F5;
    padding: 6rem 0;
}

.testimonial-card {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .customer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    border: 3px solid #4A90E2;
}

.testimonial-card h4 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.testimonial-card .customer-title {
    font-size: 0.9rem;
    color: #777777;
    display: block;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555555;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Section */
.faq-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.faq-section .accordion-item {
    border: 1px solid #E0E0E0;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-title {
    background-color: #F8FCFF;
    color: #2C3E50;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.faq-section .accordion-title:hover {
    background-color: #E8F0F5;
    color: #4A90E2;
}

.faq-section .accordion-title i {
    margin-right: 15px;
    color: #4A90E2;
    font-size: 1.3rem;
}

.faq-section .accordion-content {
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-top: 1px solid #E0E0E0;
    color: #555555;
}

/* Contact Section */
.contact-section {
    background-color: #F8FCFF;
    padding: 6rem 0;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form label {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.contact-form label .required {
    color: #E74C3C;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-top: 0.5rem;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    font-size: 1rem;
    color: #333333;
    background-color: #F8FCFF;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

#selected-service-display {
    background-color: #E0E0E0;
    font-style: italic;
}

/* Footer Section */
.footer-section {
    background-color: #2C3E50;
    color: #E8F0F5;
    padding: 4rem 0 1.5rem 0;
}

.footer-section .logo a {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-section .logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-section p {
    color: #BBBBBB;
    font-size: 0.95rem;
}

.footer-section .accordion-item {
    border: none;
    margin-bottom: 0.5rem;
}

.footer-section .accordion-title {
    background-color: transparent;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .accordion-title:hover {
    color: #4A90E2;
    background-color: transparent;
}

.footer-section .accordion-content {
    background-color: transparent;
    padding: 0.5rem 0 1rem 0;
    border: none;
}

.footer-section .vertical.menu li a {
    color: #BBBBBB;
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.footer-section .vertical.menu li a:hover {
    color: #4A90E2;
    background-color: transparent;
}

.footer-section .social-icons {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.footer-section .social-icons li {
    display: inline-block;
    margin-right: 15px;
}

.footer-section .social-icons li a {
    color: #FFFFFF;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-section .social-icons li a:hover {
    color: #4A90E2;
}

.footer-section .contact-info-placeholder {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #BBBBBB;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #BBBBBB;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #E8F0F5;
}

.cookie-banner p a {
    color: #4A90E2;
    text-decoration: underline;
}

.cookie-banner .button-group {
    margin-bottom: 0;
}

.cookie-banner .button {
    margin-left: 1rem;
    white-space: nowrap;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
}

/* Cookie Modal */
.reveal {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.reveal h3 {
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.reveal p {
    color: #555555;
    margin-bottom: 1.5rem;
}

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

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group label {
    font-weight: 600;
    color: #2C3E50;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.checkbox-group label small {
    font-weight: 400;
    color: #777777;
    font-style: italic;
}

.checkbox-group .description {
    font-size: 0.85rem;
    color: #777777;
    margin-left: 30px;
    margin-top: 0.2rem;
}

.reveal .button {
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .desktop-menu {
        display: none;
    }

    .header-section .logo a {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p.lead {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .footer-section .accordion-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section .accordion-title {
        padding: 1rem 0;
    }

    .footer-section .accordion-content {
        padding: 0.5rem 0 1.5rem 0;
    }

    .footer-section .footer-about, .footer-section .footer-links, .footer-section .footer-policies, .footer-section .footer-social {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .hero-section {
        padding: 8rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }

    .button.primary-button, .button.secondary-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .timeline-container {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -31px;
        width: 16px;
        height: 16px;
    }

    .timeline-item h3 {
        font-size: 1.5rem;
    }

    .service-card h3, .feature-card h3, .industry-card h3 {
        font-size: 1.4rem;
    }

    .pricing-card h3 {
        font-size: 1.8rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-toggle .button-group {
        flex-direction: column;
        width: 100%;
    }

    .pricing-toggle .button-group .button {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .cookie-banner .grid-x {
        flex-direction: column;
    }

    .cookie-banner .button-group {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .cookie-banner .button {
        margin: 0 0.5rem;
    }
}
/* Styles for a content clause frame, often used for legal texts or detailed descriptions */
.dataClauseFrame {
    padding: 3rem 2rem; /* Top/bottom and left/right padding */
    max-width: 1000px; /* Max width for readability */
    margin: 0 auto; /* Center the frame on the page */
    background-color: #FFFFFF; /* White background for content */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    line-height: 1.7; /* Default line height for text within the frame */
    color: #333333; /* Default text color */
}

/* Heading 1 styles within dataClauseFrame */
.dataClauseFrame h1 {
    font-size: 2.2rem; /* Moderate size for main section title */
    font-weight: 700; /* Bold font weight */
    margin-top: 2.5rem; /* Top margin for spacing from previous content */
    margin-bottom: 1.2rem; /* Bottom margin for spacing from following text */
    color: #2C3E50; /* Darker blue-grey, consistent with general headings */
}

/* Heading 2 styles within dataClauseFrame */
.dataClauseFrame h2 {
    font-size: 1.8rem; /* Smaller than h1, but still prominent */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 2rem; /* Top margin */
    margin-bottom: 1rem; /* Bottom margin */
    color: #2C3E50;
}

/* Heading 3 styles within dataClauseFrame */
.dataClauseFrame h3 {
    font-size: 1.5rem; /* Standard sub-heading size */
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    color: #2C3E50;
}

/* Heading 4 styles within dataClauseFrame */
.dataClauseFrame h4 {
    font-size: 1.3rem; /* Smaller heading for minor divisions */
    font-weight: 500; /* Medium font weight */
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2C3E50;
}

/* Heading 5 styles within dataClauseFrame */
.dataClauseFrame h5 {
    font-size: 1.1rem; /* Smallest heading, often for minor points or emphasis */
    font-weight: 500;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    color: #2C3E50;
}

/* Paragraph styles within dataClauseFrame */
.dataClauseFrame p {
    font-size: 1rem; /* Standard paragraph text size */
    margin-bottom: 1.2rem; /* Bottom margin for paragraph spacing */
    line-height: 1.7; /* Good line height for readability */
    color: #555555; /* Slightly lighter text color for body copy */
}

/* Unordered list styles within dataClauseFrame */
.dataClauseFrame ul {
    list-style: disc; /* Default bullet points */
    margin-top: 1rem; /* Top margin for list spacing */
    margin-bottom: 1.2rem; /* Bottom margin for list spacing */
    padding-left: 1.5rem; /* Indentation for bullet points */
    color: #555555;
}

/* List item styles within dataClauseFrame */
.dataClauseFrame ul li {
    font-size: 1rem; /* Standard list item text size */
    margin-bottom: 0.6rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for list items */
}

/* Remove top margin for the very first heading/paragraph/list within the frame */
.dataClauseFrame > *:first-child {
    margin-top: 0;
}

footer h4{
    color: #fff;
}

.vertical.menu{
    padding-top: 100px;
}

.grid-x.grid-margin-x.service-item{
    row-gap: 20px;
}

.menu-icon.hide-for-large{
    width: 50px;
}

footer{
    .vertical.menu{
    padding-top: 0;
}
}