/* Global Styles */
:root {
    --primary-color: #00bcd4; /* Teal */
    --secondary-color: #673ab7; /* Deep Purple */
    --accent-color: #ff4081; /* Pink Accent */
    --dark-bg: #1a1a2e; /* Dark Blue-Purple */
    --dark-bg-light: #2c2c47; /* Lighter Dark Blue-Purple */
    --text-color: #e0e0e0; /* Light Grey */
    --text-color-dark: #333;
    --border-color: #4a4a6b;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

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

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: normal;
    word-break: break-word;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.btn-secondary {
    background-color: var(--dark-bg-light);
    color: var(--text-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow-color);
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

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

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

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

.logo .site-name {
    color: var(--primary-color);
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

.main-nav .nav-list li {
    margin-left: 2rem;
}

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

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

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

.burger-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('photos/pics/game-development-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

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

.badge-container {
    position: relative;
    z-index: 2;
    background-color: rgba(26, 26, 46, 0.85); /* Darker background with transparency */
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 3rem 2rem;
    max-width: 700px;
    box-shadow: 0 10px 30px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1s ease-out forwards;
}

.badge-logo {
    height: 80px;
    width: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.badge-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.badge-container p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.about-module {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-module.reverse {
    flex-direction: row-reverse;
}

.about-module.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-module:nth-child(even).animate {
    transition-delay: 0.2s;
}

.about-module .text-block {
    flex: 1;
    padding: 1rem;
}

.about-module .text-block h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.about-module .text-block p {
    font-size: 1rem;
    line-height: 1.8;
}

.about-module .image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px var(--shadow-color);
}

/* Our Services Section */
.section-services {
    background-color: var(--dark-bg);
}

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

.service-card {
    background-color: var(--dark-bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

/* Product Features Section */
.section-features {
    background-color: var(--dark-bg-light);
}

.features-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.feature-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-image-wrapper.animate {
    opacity: 1;
    transform: translateX(0);
}

.game-screenshot-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.feature-list-wrapper {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.feature-list-wrapper.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-list {
    list-style: none;
    counter-reset: feature-counter;
}

.feature-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.feature-list li::before {
    counter-increment: feature-counter;
    content: counter(feature-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-list h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-list p {
    font-size: 1rem;
}

/* Pricing Plans Section */
.section-pricing {
    background-color: var(--dark-bg);
}

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

.pricing-card {
    background-color: #fff;
    color: var(--text-color-dark);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured-plan {
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.4);
}

.pricing-header {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1.5rem 1rem;
    text-align: center;
}

.pricing-header h3 {
    color: #fff;
    font-size: 1.8rem;
}

.price-block {
    padding: 1.5rem 1rem;
    text-align: center;
    background-color: #f8f8f8;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1rem;
    color: #777;
}

.features-list {
    list-style: none;
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-color-dark);
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.pricing-card .btn {
    margin: 1.5rem 2rem;
    width: calc(100% - 4rem);
    align-self: center;
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.pricing-card .btn:hover {
    background-color: var(--accent-color);
}

/* Our Team Section */
.section-team {
    background-color: var(--dark-bg-light);
}

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

.team-member-card {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.team-member-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

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

.team-member-card h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

/* Industries & Expertise Section */
.section-industries {
    background-color: var(--dark-bg);
}

.tabs-container {
    background-color: var(--dark-bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow-color);
    overflow: hidden;
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tabs-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    width: 100%;
}

.tab-button:hover:not(.active) {
    color: var(--accent-color);
}

.tab-content {
    padding: 1rem 0;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.tab-pane h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.tab-pane p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tab-pane ul {
    list-style: none;
    padding-left: 0;
}

.tab-pane ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.tab-pane ul li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

/* How It Works Section */
.section-how-it-works {
    background-color: var(--dark-bg-light);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.accordion-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item {
    background-color: var(--dark-bg);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px var(--shadow-color);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #2a2a40;
}

.accordion-header h3 {
    color: var(--primary-color);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content.active {
    max-height: 500px; /* Adjust based on content height */
    padding: 1.5rem 2rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.accordion-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 10px var(--shadow-color);
}

/* Contact Section */
.section-contact {
    background-color: var(--dark-bg);
    padding: 8rem 0;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--dark-bg-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow-color);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-form.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

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

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #888;
}

.form-group .error-message {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:disabled) {
    border-color: var(--accent-color);
}

.form-group input:invalid:not(:placeholder-shown) + .error-message,
.form-group select:invalid:not(:disabled) + .error-message {
    display: block;
}

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

/* Footer */
.site-footer {
    background-color: var(--dark-bg-light);
    color: var(--text-color);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.site-footer .footer-left, .site-footer .footer-right {
    flex: 1;
    min-width: 280px;
}

.site-footer .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-footer .footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.site-footer .footer-logo img {
    height: 35px;
    margin-right: 10px;
}

.site-footer .footer-logo .site-name {
    color: var(--primary-color);
}

.site-footer .footer-nav .quick-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.site-footer .footer-nav a {
    color: var(--text-color);
    font-weight: 400;
}

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

.site-footer .footer-right {
    text-align: right;
}

.site-footer .policy-links {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 1.5rem;
}

.site-footer .policy-links a {
    color: var(--text-color);
    font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg-light);
    color: var(--text-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    text-align: center;
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

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

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .main-nav .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        box-shadow: 0 2px 10px var(--shadow-color);
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .main-nav .nav-list.active {
        display: flex;
    }

    .main-nav .nav-list li {
        margin: 0;
        text-align: center;
    }

    .main-nav .nav-list a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
    }

    .burger-menu-toggle {
        display: block;
    }

    .hero-section {
        height: auto;
        min-height: 80vh;
        padding: 10rem 0;
    }

    .badge-container {
        padding: 2.5rem 1.5rem;
    }

    .badge-container h1 {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .badge-container p {
        font-size: 1.1rem;
    }

    .about-module, .about-module.reverse {
        flex-direction: column;
        text-align: center;
    }

    .about-module .text-block, .about-module .image-block {
        width: 100%;
    }

    .features-content {
        flex-direction: column;
    }

    .feature-image-wrapper, .feature-list-wrapper {
        width: 100%;
        transform: none;
        opacity: 1;
    }

    .feature-image-wrapper.animate {
        transform: none;
    }

    .feature-list-wrapper.animate {
        transform: none;
    }

    .feature-list li {
        padding-left: 2.5rem;
    }

    .feature-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

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

    .tabs-container {
        padding: 1.5rem;
    }

    .nav-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .tab-button:last-child {
        border-bottom: none;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .accordion-content.active {
        padding: 1rem 1.5rem;
    }

    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer .footer-left, .site-footer .footer-right {
        min-width: unset;
        width: 100%;
    }

    .site-footer .footer-left {
        align-items: center;
    }

    .site-footer .footer-right {
        text-align: center;
    }

    .site-footer .policy-links {
        justify-content: center;
    }

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

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo img {
        height: 35px;
    }

    .burger-menu-toggle {
        font-size: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .badge-container {
        padding: 2rem 1rem;
    }

    .badge-logo {
        height: 60px;
        width: 60px;
    }

    .badge-container h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .badge-container p {
        font-size: 1rem;
    }

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

    .about-module {
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .service-card, .pricing-card, .team-member-card, .contact-form {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

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

    .price-amount {
        font-size: 2rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-member-card h4 {
        font-size: 1.3rem;
    }

    .tabs-container {
        padding: 1rem;
    }

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

    .tab-pane h3 {
        font-size: 1.5rem;
    }

    .accordion-header h3 {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .accordion-content.active {
        padding: 1rem 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

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

    .form-group input, .form-group select, .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .contact-form .btn {
        padding: 0.9rem;
        font-size: 1.1rem;
    }

    .site-footer .footer-logo {
        font-size: 1.3rem;
    }

    .site-footer .footer-logo img {
        height: 30px;
    }

    .site-footer .footer-nav .quick-links, .site-footer .policy-links {
        gap: 0.5rem 1rem;
    }

    .site-footer .policy-links a {
        font-size: 0.8rem;
    }

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

    .cookie-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}/*
 * legalDomeBlock Container Styles
 * Provides padding for the main content block.
 */
.legalDomeBlock {
    padding-bottom: 2.5rem; /* Optional: Add bottom padding for consistency */
}

/*
 * Heading Styles (h1-h5)
 * Standardized font sizes, weights, and margins for headings within legalDomeBlock.
 * Sizes are kept moderate as requested.
 */
.legalDomeBlock h1 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700; /* Boldest for H1 */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2.5rem; /* Space above H1 */
    margin-bottom: 1rem; /* Space below H1 */
}

.legalDomeBlock h2 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600; /* Slightly less bold than H1 */
    line-height: 1.3;
    margin-top: 2rem; /* Space above H2 */
    margin-bottom: 0.8rem; /* Space below H2 */
}

.legalDomeBlock h3 {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 500; /* Standard bold for H3 */
    line-height: 1.4;
    margin-top: 1.8rem; /* Space above H3 */
    margin-bottom: 0.7rem; /* Space below H3 */
}

.legalDomeBlock h4 {
    font-size: clamp(20px, 4vw, 25px);
    font-weight: 500; /* Standard bold for H4 */
    line-height: 1.5;
    margin-top: 1.5rem; /* Space above H4 */
    margin-bottom: 0.6rem; /* Space below H4 */
}

.legalDomeBlock h5 {
    font-size: 1.1rem; /* Moderate H5 font size */
    font-weight: 500; /* Standard bold for H5 */
    line-height: 1.5;
    margin-top: 1.2rem; /* Space above H5 */
    margin-bottom: 0.5rem; /* Space below H5 */
}

/*
 * Paragraph Styles (p)
 * Base font size, line height, and margin for paragraphs.
 */
.legalDomeBlock p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/*
 * Unordered List Styles (ul, li)
 * Standard bullet points, indentation, and spacing for lists.
 */
.legalDomeBlock ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

/*
 * Ordered List Styles (ol, li)
 * Standard numbered points, indentation, and spacing for lists.
 * Added for completeness as a common "stock" element.
 */
.legalDomeBlock ol {
    list-style-type: decimal; /* Default numbered points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for numbers */
}

.legalDomeBlock li {
    font-size: 1rem; /* Font size for list items, consistent with paragraphs */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
}


@media (max-width: 767px){
    .features-list{
        padding: 10px;
    }

    .quick-links{
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    main{
        flex: 1;
    }
}