/* General Styles */
:root {
    --primary-color: #6F42C1; /* Purple accent */
    --secondary-color: #007BFF; /* Blue accent */
    --accent-green: #28A745; /* Green accent */
    --light-bg: #F8F9FA;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --gray-text: #6c757d;
    --border-color: #dee2e6;
    --card-bg: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--light-text);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn--primary:hover {
    background-color: #5a369e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background-color: var(--card-bg);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-text);
}

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

.site-name {
    font-family: var(--font-heading);
    font-size: clamp(16px,2.5vw,24px) !important;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 600;
    color: var(--dark-text);
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url(assets/media/board-game-table_2.png) no-repeat center center/cover;
    color: var(--light-text);
    text-align: center;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    margin-top: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.hero-benefits h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.hero-benefits ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--light-text);
}

.hero-benefits li i {
    color: var(--accent-green);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.how-we-work {
    margin-top: 5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.how-we-work h3 {
    color: var(--light-text);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.visual-block-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.image-caption {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.project-examples {
    margin-top: 5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.project-examples h3 {
    color: var(--light-text);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
  text-align: center; 
}

.examples-grid .example-item:nth-child(3) {
  grid-column: 1 / -1;  
  justify-self: center;
}


.example-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.example-item h4 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.example-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

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

.service-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-text);
    font-size: 1rem;
}

/* Process Section */
.process-section {
    background-color: #eef2f6;
    padding: 6rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.process-step {
    flex-wrap: wrap;
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
    border-left: 5px solid var(--accent-green);
    align-items: center;
}

.process-step:nth-child(even) {
    border-left: 5px solid var(--secondary-color);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--light-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
    margin: 0;
}

.process-step p {
    color: var(--gray-text);
    font-size: 1rem;
}

/* About Section (Team) */
.about-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

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

.about-intro p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.team-member {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 5px solid var(--primary-color);
}

.founder-card {
    border-bottom-color: var(--secondary-color);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
}

.founder-card .team-avatar {
    border-color: var(--secondary-color);
}

.team-member h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.team-role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--gray-text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* Stats Section */
.stats-section {
    background: url(assets/media/gaming-elements-bg_2.png) no-repeat center center/cover;
    position: relative;
    padding: 6rem 0;
    color: var(--light-text);
    text-align: center;
}

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

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

.stats-section h2 {
    color: var(--light-text);
}

.stats-section h2::after {
    background-color: var(--accent-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
}

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

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card--odd {
    background-color: var(--card-bg);
}

.testimonial-card--even {
    background-color: #fcfdff;
    border-left-color: var(--secondary-color);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    opacity: 0.1;
}

.testimonial-card--even .quote-icon {
    color: var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    padding-top: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-card--even .author-avatar {
    border-color: var(--secondary-color);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.2;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray-text);
    display: block;
    margin-top: 0.2rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background-color: #fdfdfd;
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-text);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    display: none; /* Hidden by default */
    color: var(--gray-text);
    font-size: 1rem;
}

/* Contact Section (Main Form) */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color), #8a63d1);
    padding: 6rem 0;
    color: var(--light-text);
    text-align: center;
}

.contact-section h2 {
    color: var(--light-text);
}

.contact-section h2::after {
    background-color: var(--accent-green);
}

.contact-description {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.05rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: #fefefe;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

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

.btn--submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Sticky Contact Banner */
.contact-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.contact-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background-color: #5a369e;
    transform: translateY(-2px);
}

.sticky-contact-form-wrapper {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 300px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 1rem;
    border-top: 5px solid var(--primary-color);
}

.sticky-contact-form-wrapper h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
}

.sticky-contact-form input,
.sticky-contact-form textarea {
    width: calc(100% - 20px);
    padding: 0.8rem 10px;
    margin-bottom: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.sticky-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.sticky-contact-form .btn--primary {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
}

.close-sticky-form {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-text);
    cursor: pointer;
}

.close-sticky-form:hover {
    color: var(--dark-text);
}

/* Side CTA Banner */
.side-cta-banner {
    position: fixed;
    top: 50%;
    right: -200px; /* Hidden by default */
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 1.5rem 1.2rem;
    border-radius: 10px 0 0 10px;
    box-shadow: var(--shadow);
    text-align: center;
    width: 180px;
    z-index: 999;
    display: none; /* Controlled by JS */
    transition: right 0.5s ease;
}

.side-cta-banner.active {
    right: 0;
}

.side-cta-banner h3 {
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.side-cta-banner p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.side-cta-banner .btn--primary {
    background-color: var(--accent-green);
    color: var(--light-text);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-radius: 5px;
}

.side-cta-banner .btn--primary:hover {
    background-color: #218838;
}

/* Footer */
.footer-section {
    background-color: var(--dark-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column {
    padding: 1rem 0;
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; /* For accordion on mobile */
}

.footer-heading i {
    display: none; /* Hide on desktop */
}

.footer-content ul li {
    margin-bottom: 0.8rem;
}

.footer-content a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-content a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo-link .logo {
    filter: brightness(0) invert(1);
    height: 30px;
}

.footer-logo-link .site-name {
    color: var(--light-text);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: -webkit-fill-available !important;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--light-text);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
    max-width: 800px;
}

.cookie-banner a {
    color: var(--accent-green);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav ul {
        gap: 1rem;
    }

    .main-header{
        padding: 0.3rem 0;
    }

    .hero-section {
        padding: 6rem 0;
        min-height: 70vh;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid, .team-members, .team-grid, .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        border-left: none;
        border-top: 5px solid var(--accent-green);
    }

    .process-step:nth-child(even) {
        border-left: none;
        border-top: 5px solid var(--secondary-color);
    }

    .step-icon {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

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

    .footer-heading {
        cursor: pointer;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
    }

    .footer-heading i {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .footer-heading.active i {
        transform: rotate(45deg);
    }

    .footer-content {
        display: none; /* Hidden by default for accordion */
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .footer-column:last-child .footer-heading {
        border-bottom: none;
    }

    .footer-logo-link {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .side-cta-banner {
        display: none !important; /* Hide side CTA on smaller screens */
    }

    .main-header {
        position: relative;
    }
}

@media (max-width: 768px) {

     .main-nav ul {
        gap: 0rem;
    }
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav li {
        margin: 0 0.5rem;
    }

    .hero-section {
        padding: 4rem 0;
        min-height: 60vh;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .cookie-banner p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .contact-banner {
        bottom: 10px;
        right: 10px;
    }

    .contact-button {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }

    .sticky-contact-form-wrapper {
        width: calc(100vw - 40px);
        max-width: 350px;
        right: -10px;
        bottom: -10px;
    }

    .testimonials-wrapper {
        gap: 1.5rem;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer {
        padding: 1rem 1.5rem;
    }

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

        .author-info{
        flex-direction: column;
        }
}

@media (max-width: 480px) {
   
    .logo {
        height: 35px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .btn--large {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .services-grid, .team-members, .team-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input, .form-group textarea {
        padding: 0.8rem 1rem;
    }

    .btn--submit {
        padding: 1rem;
        font-size: 1rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    
}
/* New styles for content within .policyScopeWrap */
.policyScopeWrap {
    /* Padding for the policy content wrapper */
    padding: 2rem 1.5rem; /* Top/bottom and left/right padding */
    max-width: 900px; /* Limit width for readability */
    margin: 2rem auto; /* Center the block and add vertical margin */
    background-color: var(--card-bg); /* Use card background for content area */
    border-radius: 12px; /* Soften corners */
    box-shadow: var(--shadow); /* Add a subtle shadow */
    line-height: 1.7; /* Improve readability for long texts */
    color: var(--dark-text); /* Ensure text color is readable */
    font-family: var(--font-body); /* Default font for the wrapper content */
}

.policyScopeWrap h1,
.policyScopeWrap h2,
.policyScopeWrap h3,
.policyScopeWrap h4,
.policyScopeWrap h5 {
    /* Font family for headings */
    font-family: var(--font-heading);
    /* Color for headings */
    color: var(--primary-color);
    /* Default top margin for headings */
    margin-top: 1.5em;
    /* Default bottom margin for headings */
    margin-bottom: 0.8em;
    /* Ensure bold weight */
    font-weight: 700;
    /* Adjust line height for headings */
    line-height: 1.3;
}

.policyScopeWrap h1 {
    /* Font size for main heading within policy content */
    font-size: 1.75rem; /* Approximately 28px */
    margin-top: 2em; /* Larger top margin for main section heading */
    margin-bottom: 1em;
}

.policyScopeWrap h2 {
    /* Font size for secondary heading */
    font-size: 1.5rem; /* Approximately 24px */
}

.policyScopeWrap h3 {
    /* Font size for tertiary heading */
    font-size: 1.35rem; /* Approximately 21.6px */
}

.policyScopeWrap h4 {
    /* Font size for quaternary heading */
    font-size: 1.2rem; /* Approximately 19.2px */
}

.policyScopeWrap h5 {
    /* Font size for quinary heading */
    font-size: 1.1rem; /* Approximately 17.6px */
    color: var(--dark-text); /* Slightly softer color for smaller headings */
}

.policyScopeWrap p {
    /* Font size for paragraphs */
    font-size: 1rem; /* Base font size */
    /* Line height for paragraphs */
    line-height: 1.7;
    /* Bottom margin for paragraph separation */
    margin-bottom: 1em;
    /* Text color for paragraphs */
    color: var(--dark-text);
}

.policyScopeWrap ul {
    /* Reset default list styles to disc */
    list-style: disc;
    /* Top margin for unordered lists */
    margin-top: 1em;
    /* Bottom margin for unordered lists */
    margin-bottom: 1em;
    /* Left padding for list indentation */
    padding-left: 1.5em;
    /* Text color for lists */
    color: var(--dark-text);
}

.policyScopeWrap ol {
    /* Reset default list styles to decimal */
    list-style: decimal;
    /* Top margin for ordered lists */
    margin-top: 1em;
    /* Bottom margin for ordered lists */
    margin-bottom: 1em;
    /* Left padding for list indentation */
    padding-left: 1.5em;
    /* Text color for lists */
    color: var(--dark-text);
}

.policyScopeWrap ul li,
.policyScopeWrap ol li {
    /* Font size for list items */
    font-size: 1rem;
    /* Line height for list items */
    line-height: 1.7;
    /* Bottom margin for list item separation */
    margin-bottom: 0.5em;
    /* Text color for list items */
    color: var(--dark-text);
}

/* Specific styling for nested lists to reduce indentation */
.policyScopeWrap ul ul,
.policyScopeWrap ol ol {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 1.2em; /* Slightly less indentation for nested lists */
}

/* Ensure links within policy text are styled */
.policyScopeWrap a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policyScopeWrap a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.info-wrapper{
    padding: 50px 20px;
}

.hero-section-mins{ 
    min-height: 50vh !important;
}

.form-group input, .form-group textarea{
    width: -webkit-fill-available !important;
}


.footer-content {
  display: none;
}

.footer-heading i {
  display: none; 
}

@media (max-width: 992px) {
  .footer-heading i {
    display: inline-block;
  }
  .footer-heading.active + .footer-content {
    display: block;
  }
  .footer-heading i::before {
    content: "\f067"; /
  }
  .footer-heading.active i::before {
    content: "\f068"; 
  }
}
