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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
}

.cookie-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.cookie-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cookie-content p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

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

.btn-accept {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: #333;
}

.btn-refuse {
    background: transparent;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Header */
.header {
    background: #0a4d3c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: #f9f9f9;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.hero-content h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    background: #ff7b3d;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e66a2e;
}

/* About Section */
.about {
    background: white;
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.about-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.about-story {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
}

.about-story h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-story p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* Advantages Section */
.advantages {
    background: #f9f9f9;
    padding: 60px 0;
}

.advantages h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.advantages-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.advantage-card h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.advantage-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* Image Banner */
.image-banner {
    padding: 0;
    margin: 0;
}

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

/* Approach Section */
.approach {
    background: white;
    padding: 60px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.approach-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.approach-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.approach-features h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h4 {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: #f9f9f9;
    padding: 60px 0;
}

.testimonials h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonial-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: white;
    padding: 60px 0;
}

.contact h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: #ff7b3d;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    width: fit-content;
}

.btn-submit:hover {
    background: #e66a2e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    font-size: 14px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
}

/* Footer */
.footer {
    background: #0a4d3c;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer p {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 0.8;
}

.footer-credit {
    margin-top: 20px;
    opacity: 0.7;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .hero-grid,
    .about-grid,
    .approach-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantages-grid,
    .feature-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
}