:root {
    --primary-color: #1a34e8;
    --secondary-color: #ffd700;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --font-primary: 'Arial', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.header-links a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 14px;
}

.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 50px;
    margin-top: 60px;
}

.hero-content {
    text-align: center;
    padding: 30px 0;
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.subtitle {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.description {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: black;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 60px 0;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 40px;
}

.process-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.process-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.process-image {
    flex: 1;
    min-width: 300px;
}

.process-image img {
    width: 100%;
    border-radius: 8px;
}

.process-steps {
    margin-top: 20px;
}

.step {
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    width: 250px;
    transition: transform 0.3s ease;
}

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

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

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

.service-content {
    padding: 20px;
    text-align: center;
}

.service-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-description {
    font-size: 14px;
}

.trends-section {
    background-color: #f5f5f5;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.trend-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trend-image {
    width: 40%;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trend-content {
    width: 60%;
    padding: 15px;
}

.trend-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
}

.sustainability-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.sustainability-content {
    flex: 1;
    min-width: 300px;
}

.sustainability-image {
    flex: 1;
    min-width: 300px;
}

.sustainability-image img {
    width: 100%;
    border-radius: 8px;
}

.sustainability-points {
    margin-top: 20px;
}

.sustainability-point {
    margin-bottom: 10px;
}

.team-section {
    background-color: var(--light-color);
}

.team-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.team-text {
    flex: 1;
    min-width: 300px;
}

.team-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 14px;
}

.team-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.contact-form {
    max-width: 500px;
    margin: 30px auto 0;
}

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

.form-control {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}

textarea.form-control {
    border-radius: 15px;
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: black;
    width: 150px;
}

footer {
    background-color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 14px;
}

.footer-address {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: #6c757d;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    width: 60px;
    height: 60px;
}

.cookie-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.cookie-btn {
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    flex: 1;
}

.accept-all {
    background-color: var(--secondary-color);
    color: black;
    border: none;
}

.accept-necessary {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
}

/* Responsive design */
@media (max-width: 768px) {
    .process-content, 
    .sustainability-section, 
    .team-content {
        flex-direction: column;
    }
    
    .process-text, 
    .process-image, 
    .sustainability-content, 
    .sustainability-image, 
    .team-text, 
    .team-stats {
        width: 100%;
        padding-right: 0;
    }
    
    .service-card {
        width: 100%;
        max-width: 300px;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}