/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #336b5e;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --btn-hover: #2a5a4e;
    --border-color: #e5e5e5;
}

body {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 12px 24px;
    border: 2px solid var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    display: inline-block;
    background-color: var(--white);
    color: var(--text-color);
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #f0f0f0;
}

.arrow-right {
    margin-left: 8px;
}

/* Header and Navigation */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

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

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.dropdown {
    display: flex;
    align-items: center;
}

.arrow {
    font-size: 10px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Values Section */
.values {
    padding: 60px 0;
    background-color: var(--white);
}

.values-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.values-description {
    flex: 1;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-card p {
    margin-bottom: 15px;
    font-size: 14px;
}

.stat-tag {
    display: inline-block;
    background-color: #333;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
}

/* Integration Section */
.integration {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.integration-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.integration-text {
    flex: 1;
}

.integration-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.integration-text p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.integration-icons {
    flex: 1;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.central {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.testimonials h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #e0e0e0;
}

.testimonial-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--light-text);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
}

.star {
    width: 20px;
    height: 20px;
    margin-right: 3px;
    background-color: #e0e0e0;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.filled {
    background-color: #ffc107;
}

.star.half {
    background: linear-gradient(90deg, #ffc107 50%, #e0e0e0 50%);
}

.testimonial-cta {
    text-align: center;
}

.testimonial-cta a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-cta a:hover {
    background-color: #e0e0e0;
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.form-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-container p {
    margin-bottom: 30px;
    opacity: 0.9;
}

form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.form-submit {
    grid-column: 1 / 4;
    text-align: center;
    margin-top: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
    display: none;
}

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

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.btn-cookie-reject {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
}

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

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #e0e0e0;
}

.copyright {
    text-align: center;
    color: var(--light-text);
    font-size: 14px;
}

/* Thank You Page */
.thank-you-page {
    padding: 80px 0;
    background-color: var(--secondary-color);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thank-you-content p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.thank-you-content .section-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.btn-home {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: var(--btn-hover);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .values-content, .integration-content {
        flex-direction: column;
    }
    
    .stats, .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    form {
        grid-template-columns: 1fr;
    }
    
    .form-submit {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .hero-text h1, .values-text h2, .integration-text h2 {
        font-size: 28px;
    }
    
    .stats, .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero, .values, .integration, .testimonials, .contact-form {
        padding: 40px 0;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}