/* Global Styles */
:root {
    --primary-color: #f0844a;
    --secondary-color: #4a90e2;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --text-color: #333;
    --button-red: #ed6a5a;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--button-red);
    color: var(--light-color);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--button-red);
    border: 2px solid var(--button-red);
}

.btn-secondary:hover {
    background-color: rgba(237, 106, 90, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    .cookie-content {
        max-width: 100%;
        border-radius: 10px 10px 0 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Header */
.header {
    padding: 20px 0;
    background-color: var(--light-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav ul li a {
    font-size: 0.9rem;
}

.nav ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .nav ul li {
        margin: 5px 0;
    }
}

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

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

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image, .hero-text {
        width: 100%;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services h2 {
    text-align: center;
}

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

.service-card {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-image {
    grid-column: span 1;
    grid-row: span 2;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

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

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

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-image {
        grid-column: span 2;
        grid-row: 3;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Growth Section */
.growth {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a90e2, #6aa2e8);
    color: var(--light-color);
}

.growth h2 {
    text-align: center;
}

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

.growth-philosophy {
    max-width: 800px;
    margin: 0 auto 30px;
}

.growth-philosophy ul {
    list-style: none;
    margin: 20px 0;
}

.growth-philosophy li {
    margin-bottom: 10px;
}

.growth-cta {
    text-align: center;
    margin-bottom: 40px;
}

.growth-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--light-color);
}

.advantages-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.advantages-text {
    flex: 1;
}

.advantages-list {
    list-style: none;
    counter-reset: advantages-counter;
}

.advantages-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.advantages-list li:before {
    content: counter(advantages-counter) ".";
    counter-increment: advantages-counter;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.advantages-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .advantages-content {
        flex-direction: column;
    }
    
    .advantages-text, .advantages-image {
        width: 100%;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff4f2;
}

.faq h2 {
    text-align: center;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--light-color);
}

.faq-question {
    padding: 20px;
    background-color: #fde8e4;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-weight: 600;
}

.faq-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-text {
    flex: 1;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form-container {
    flex: 1;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    width: 100%;
}

input, textarea, button[type="submit"] {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-family: 'Inter', sans-serif;
}

input::placeholder, textarea::placeholder {
    color: #999;
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

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

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-text, .contact-form-container {
        width: 100%;
    }
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--light-color);
}

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

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 768px) {
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact, .footer-copyright {
        margin-bottom: 20px;
    }
}

.main-section {
    padding: 80px 0;
    background-color: var(--light-color);
}