/* Global Styles */
:root {
    --primary-color: #f7e6a7; /* Light yellow */
    --secondary-color: #f0d26f; /* Slightly darker yellow */
    --accent-color: #E91E63; /* Pink/Purple for highlights */
    --dark-text: #333;
    --light-text: #fff;
    --gray-text: #666;
    --border-color: #ddd;
    --background-light: #fffaf0; /* Off-white/cream */
    --background-dark: #222;
    --button-hover-darken: rgba(0, 0, 0, 0.1);
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
    margin-bottom: 0.5em;
}

/* Adaptive Typography for Headings */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}
h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}
h4 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 767px) {
    h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
    h2 {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }
    h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.8rem);
    }
    h4 {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    .site-name {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    font-weight: 700;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    line-height: 1.2;
}

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

.primary-button:hover {
    background-color: darken(var(--accent-color), 10%);
}

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

.secondary-button:hover {
    background-color: darken(var(--primary-color), 5%);
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

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

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

.logo {
    height: 40px;
    width: auto;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-menu {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    white-space: nowrap;
    overflow-x: auto;
}

.nav-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.nav-list {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

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

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

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

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

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none; /* Hidden by default */
    justify-content: flex-end; /* Align menu to the right */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.is-active {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.mobile-nav-menu {
    background-color: var(--primary-color);
    width: 70%; /* Adjust as needed */
    max-width: 300px;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    height: 100%;
    overflow-y: auto;
}

.mobile-nav-overlay.is-active .mobile-nav-menu {
    transform: translateX(0);
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-text);
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding-top: 3rem;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list .nav-link {
    display: block;
    font-size: 1.5rem;
    color: var(--dark-text);
    font-weight: 600;
}

.mobile-nav-list .nav-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    padding: 8rem 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Asymmetric split */
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* About Section (Timeline) */
.about-section {
    background-color: var(--background-light);
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 0.5rem;
    transform: translateX(-50%);
    z-index: 1;
    border: 3px solid var(--background-light);
}

.timeline-content {
    width: calc(50% - 3rem);
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

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

.service-card {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.service-card--makeup::before {
    background-image: url('graphics/media/makeup-brushes-background.jpg');
}
.service-card--hair::before {
    background-image: url('graphics/media/hair-styling-tools-background.jpg');
}
.service-card--photoshoot::before {
    background-image: url('graphics/media/camera-lens-background.jpg');
}
.service-card--daily::before {
    background-image: url('graphics/media/natural-beauty-background.jpg');
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-light);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
}

.faq-item p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background-color: var(--primary-color);
}

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

.feature-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

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

.team-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
    flex-shrink: 0;
}

.team-member--highlighted {
    transform: scale(1.15);
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 2.5rem;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-member--highlighted h4, .team-member--highlighted p {
    color: var(--light-text);
}

.team-member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--background-light);
}

.team-member--highlighted .team-member-img {
    border-color: var(--primary-color);
}

.team-member h4 {
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

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

/* Portfolio Section */
.portfolio-section {
    background-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3x3 layout */
    gap: 1.5rem;
}

.portfolio-item {
    background-color: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.portfolio-item img {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover;
    display: block;
}

.portfolio-item h4 {
    padding: 1rem;
    color: var(--dark-text);
    margin: 0;
}

/* Industries Section */
.industries-section {
    background-color: var(--background-light);
}

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

.industry-item {
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.industry-item h3 {
    color: var(--dark-text);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.industry-item p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
}

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

.stat-item {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.stat-item--clients::before {
    background-image: url('graphics/media/happy-clients-background.jpg');
}
.stat-item--projects::before {
    background-image: url('graphics/media/projects-completed-background.jpg');
}
.stat-item--years::before {
    background-image: url('graphics/media/years-experience-background.jpg');
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stat-item h2 {
    color: var(--dark-text);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-item p {
    color: var(--gray-text);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

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

.process-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

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

.process-divider {
    width: 40px;
    height: 2px;
    background-color: var(--border-color);
    margin: 3rem 0;
    align-self: center;
}

@media (min-width: 768px) {
    .process-divider {
        width: 2px;
        height: 40px;
        margin: 0 2rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Half form, half map */
    gap: 3rem;
    align-items: stretch;
}

.contact-form-wrapper {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-title {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--dark-text);
    background-color: #fcfcfc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(var(--accent-color), 0.2);
}

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

.contact-info {
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info p i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-link {
    color: var(--dark-text);
    text-decoration: none;
}

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

.contact-map-placeholder {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff7f50 100%); /* Vibrant gradient */
    padding: 5rem 0;
    text-align: center;
    color: var(--light-text);
}

.cta-title {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--light-text);
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-button:hover {
    background-color: #f0f0f0;
    color: darken(var(--accent-color), 10%);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-light);
}

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

.testimonial-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
    display: block;
    text-align: right;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: var(--light-text);
}

.footer-cta-bar {
    background-color: var(--accent-color);
    padding: 3rem 0;
    text-align: center;
}

.footer-cta-bar h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.footer-cta-bar .button {
    background-color: var(--light-text);
    color: var(--accent-color);
}

.footer-cta-bar .button:hover {
    background-color: #f0f0f0;
    color: darken(var(--accent-color), 10%);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Brand, Quick Links, Legal */
    gap: 3rem;
}

.footer-column .logo-link {
    margin-bottom: 1rem;
}

.footer-column .logo {
    filter: brightness(0) invert(1); /* Make logo white */
}

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

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
}

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

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    z-index: 2000;
    display: none; /* Hidden by default */
}

.cookie-banner-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-banner-content .cookie-link {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.cookie-banner .button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.cookie-banner .primary-button {
    background-color: var(--accent-color);
    color: var(--light-text);
}

.cookie-banner .secondary-button {
    background-color: var(--background-dark);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2001;
    display: none; /* Hidden by default */
    overflow-y: auto; /* Enable scroll for modal content */
}

.cookie-modal-content {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.cookie-modal-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cookie-category label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: var(--accent-color);
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
}

.cookie-category .category-info {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-weight: 400;
}

.cookie-category .category-description {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-left: 1.7rem; /* Align with checkbox */
    color: var(--gray-text);
}

.cookie-modal-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal .button {
    padding: 0.7rem 1.5rem;
}

.cookie-modal .primary-button {
    background-color: var(--accent-color);
    color: var(--light-text);
}

.cookie-modal .secondary-button {
    background-color: var(--background-light);
    color: var(--dark-text);
    border: 1px solid var(--border-color);
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .header__container {
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image-wrapper {
        order: -1; /* Move image above text on smaller screens */
    }
    .hero-text {
        text-align: center;
    }
    .hero-title, .hero-subtitle {
        text-align: center;
    }
    .hero-text .button {
        margin: 0 auto;
    }

    .timeline::before {
        left: 1.5rem;
    }
    .timeline-item {
        align-items: flex-start;
    }
    
    .timeline-marker {
        left: 1.5rem;
        transform: translateX(-50%);
    }
    .timeline-content {
        width: 100%;
        margin-left: 3rem !important;
        text-align: left !important;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-placeholder {
        order: -1; /* Move map above form on mobile */
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
    .footer-brand .logo-link {
        justify-content: center;
    }
    .footer-column {
        text-align: center;
    }
    .footer-links {
        padding: 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 4rem 0;
    }
    .section-title {
        margin-bottom: 2rem;
    }
    .site-name {
        font-size: 1.25rem;
    }
    .logo {
        height: 30px;
    }

    .hero-section {
        padding: 6rem 0 4rem;
    }
    .hero-title {
        margin-bottom: 0.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .services-grid, .features-grid, .industries-grid, .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item img {
        height: 200px;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    .team-member {
        width: 100%;
        max-width: 300px;
    }
    .team-member--highlighted {
        transform: scale(1.05);
        padding: 2rem;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }
    .process-divider {
        width: 2px;
        height: 40px;
        margin: 2rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .contact-info p i {
        margin-bottom: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 2rem;
    }
    .footer-column:last-child {
        margin-bottom: 0;
    }
    .footer-links {
        padding: 0;
    }
}
/* Styles for the main content wrapper */
.userClauseNet {
    margin: 20px 15px; /* Top/bottom and side margins for the main content block */
}

/* Heading 1 styles */
.userClauseNet h1 {
    font-size: 24px; /* Moderate font size for H1 */
    font-weight: bold; /* Bold font weight */
    margin-top: 30px; /* Space above the heading */
    margin-bottom: 15px; /* Space below the heading */
    line-height: 1.2; /* Improved readability */
}

/* Heading 2 styles */
.userClauseNet h2 {
    font-size: 20px; /* Moderate font size for H2 */
    font-weight: bold; /* Bold font weight */
    margin-top: 25px; /* Space above the heading */
    margin-bottom: 12px; /* Space below the heading */
    line-height: 1.3; /* Improved readability */
}

/* Heading 3 styles */
.userClauseNet h3 {
    font-size: 18px; /* Moderate font size for H3 */
    font-weight: bold; /* Bold font weight */
    margin-top: 20px; /* Space above the heading */
    margin-bottom: 10px; /* Space below the heading */
    line-height: 1.4; /* Improved readability */
}

/* Heading 4 styles */
.userClauseNet h4 {
    font-size: 16px; /* Moderate font size for H4, similar to body text but bold */
    font-weight: bold; /* Bold font weight */
    margin-top: 18px; /* Space above the heading */
    margin-bottom: 8px; /* Space below the heading */
    line-height: 1.5; /* Improved readability */
}

/* Heading 5 styles */
.userClauseNet h5 {
    font-size: 14px; /* Moderate font size for H5 */
    font-weight: bold; /* Bold font weight */
    margin-top: 15px; /* Space above the heading */
    margin-bottom: 6px; /* Space below the heading */
    line-height: 1.5; /* Improved readability */
}

/* Paragraph styles */
.userClauseNet p {
    font-size: 16px; /* Standard paragraph font size */
    line-height: 1.6; /* Improved readability for paragraphs */
    margin-bottom: 16px; /* Space after each paragraph */
}

/* Unordered list styles */
.userClauseNet ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 16px; /* Space before the list */
    margin-bottom: 16px; /* Space after the list */
    padding-left: 25px; /* Indentation for bullet points */
}

/* List item styles */
.userClauseNet li {
    font-size: 16px; /* Font size for list items */
    line-height: 1.5; /* Line height for list items */
    margin-bottom: 8px; /* Space between list items */
}


main{
    overflow: hidden !important;
}