:root {
    /* Color Variables */
    --primary-color: #a1c6ea; /* Light Blue */
    --secondary-color: #f9d5e5; /* Light Pink */
    --accent-color: #f6caac; /* Peach */
    --dark-primary: #6a9bb8;
    --dark-secondary: #cf9bbf;
    --dark-accent: #d9966b;
    --bg-color: #ffffff;
    --text-color: #333333;
    --overlay-color: rgba(0, 0, 0, 0.5);

    /* Font Variables */
    --font-header: 'Roboto', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Transition Variables */
    --transition-speed: 0.3s;

    /* Gradient Variables */
    --gradient-bg: linear-gradient(135deg, #a1c6ea, #f9d5e5);
    --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background-color: var(--dark-primary);
    transform: scale(1.05);
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-size: 1rem;
    padding: 10px;
    transition: background-color var(--transition-speed);
}

nav ul li a:hover {
    background-color: var(--primary-color);
    border-radius: 5px;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    height: 3px;
    width: 25px;
    background: var(--text-color);
    margin-bottom: 4px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-color);
        transition: left var(--transition-speed);
    }

    nav ul.nav-active {
        left: 0;
    }

    nav ul li {
        margin: 20px 0;
    }

    .burger {
        display: flex;
    }

    .burger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .burger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

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

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-section .btn {
    background-color: var(--accent-color);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.hero-section .btn:hover {
    background-color: var(--dark-accent);
    transform: translateY(-5px);
}

/* Features Section */
.features-section {
    background-color: var(--bg-color);
    padding: 60px 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

.feature-item {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform var(--transition-speed);
}

.feature-item img:hover {
    transform: scale(1.05);
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

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

/* Sustainability Section */
.sustainability-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.sustainability-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.sustainability-section .container {
    position: relative;
    z-index: 1;
}

.sustainability-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.sustainability-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Methodology Section */
.methodology-section {
    background-color: var(--bg-color);
    padding: 60px 0;
    text-align: center;
}

.methodology-section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.methodology-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Innovation Section */
.innovation-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.innovation-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.innovation-section .container {
    position: relative;
    z-index: 1;
}

.innovation-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.innovation-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-color);
    padding: 60px 0;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Clientele Section */
.clientele-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.clientele-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.clientele-section .container {
    position: relative;
    z-index: 1;
}

.clientele-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.clientele-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-color);
    padding: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 600px;
    margin: 0 20px;
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    scroll-snap-align: start;
    transition: transform var(--transition-speed);
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-item h4 {
    margin-top: 0;
    font-weight: bold;
}

/* External Resources Section */
.external-resources-section {
    background-color: var(--bg-color);
    padding: 60px 0;
}

.external-resources-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

.resource-item {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
}

.resource-item:hover {
    background-color: var(--dark-secondary);
    transform: translateY(-10px);
}

.resource-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.resource-item p {
    font-size: 1rem;
}

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

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.btn[type="submit"] {
    align-self: center;
}

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

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

.footer-links a {
    margin: 0 15px;
    color: #ffffff;
    font-weight: bold;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--dark-accent);
}

.social-media a {
    margin: 0 10px;
    color: #ffffff;
    font-size: 1.2rem;
    transition: color var(--transition-speed);
}

.social-media a:hover {
    color: var(--dark-accent);
}

/* Read More Links */
.read-more {
    color: var(--accent-color);
    font-weight: bold;
    position: relative;
}

.read-more::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-speed);
}

.read-more:hover::after {
    width: 100%;
}

/* Cookie Consent Popup */
.cookie-popup {
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.cookie-popup p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.cookie-popup .btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.cookie-popup .btn:hover {
    background-color: var(--dark-accent);
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: fadeIn 0.5s ease;
}

.modal-content .close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;

    text-align: center;
    
}

.success-page .container {
    padding: 20px;
}

.success-page h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-page p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success-page .btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.success-page .btn:hover {
    background-color: var(--dark-accent);
    transform: scale(1.05);
}

/* Privacy and Terms Page Padding */
body.privacy-page,
body.terms-page {
    padding-top: 100px;
}

/* Utility Classes */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-center {
    display: grid;
    place-items: center;
}

/* Animated Elements */
.animated-element {
    transform: perspective(1000px);
    transition: transform var(--transition-speed) ease;
}

.animated-element:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(10deg);
}

/* Read More Link Styles */
.read-more {
    color: var(--accent-color);
    font-weight: bold;
    position: relative;
}

.read-more::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-speed);
}

.read-more:hover::after {
    width: 100%;
}