/* Global Styles */
:root {
    --primary-color: #8de4e4;
    --primary-dark: #70c8c8;
    --text-color: #333;
    --background-color: #f5fcfc;
    --white: #fff;
    --light-gray: #f5f5f5;
    --dark-gray: #777;
    --black: #000;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

section {
    padding: 60px 0;
}

/* Navigation Styles */
.main-nav {
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.contact-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1001;
    transition: right 0.3s;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
    display: block;
}

.nav-links {
    align-items: center;
}

html {
    scroll-behavior: smooth;
}

.thank-section {
    padding: 200px 0px;
    text-align: center;
}

.thank-section .btn {
    margin-top: 30px;
    background: var(--primary-color);
}

.main-section {
    padding: 100px 0px;
}

.main-section h1 {
    text-align: center;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links a {
    font-weight: 600;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    background-color: var(--primary-color);
}

.hero-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
}

.hero-image, .hero-text {
    flex: 1;
}

.hero-text {
    padding: 40px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--text-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--light-gray);
}

/* What We Do Section */
.what-we-do {
    background-color: var(--white);
}

.what-we-do .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-image, .section-content {
    flex: 1;
}

/* Who We Work With Section */
.who-we-work-with {
    background-color: var(--white);
    text-align: center;
}

.client-list {
    margin: 40px 0;
    text-align: center;
}

.client-list p {
    margin-bottom: 15px;
}

.closing-statement {
    max-width: 800px;
    margin: 0 auto;
}

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

.services-intro {
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 180px;
    overflow: hidden;
}

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

.service-card h4 {
    padding: 20px;
    font-size: 1.1rem;
}

/* Technical Clarity Section */
.technical-clarity {
    background-color: var(--white);
    text-align: center;
}

.technical-clarity p {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
    text-align: center;
    padding-bottom: 80px;
}

form {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.copyright {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    z-index: 1002;
    text-align: center;
    display: none;
}

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

.cookie-popup h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.cookie-button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s;
}

.cookie-button.accept {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.cookie-button.refuse {
    background-color: transparent;
    color: var(--text-color);
}

.cookie-button.accept:hover {
    background-color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-content, .what-we-do .container {
        flex-direction: column;
    }
    
    .hero-text, .section-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    form {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-popup {
        width: 95%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding-top: 80px;
    }
}