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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #4EB16D;
    --text-color: #333;
    --light-bg: #f5f8fa;
    --white: #fff;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

ul {
    list-style: none;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

section {
    padding: 4rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3d9058;
}

.btn-settings {
    background-color: transparent;
    border: 1px solid var(--white);
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    z-index: 9999;
    padding: 20px;
    display: none;
}

.cookie-consent.small {
    max-width: 400px;
    bottom: 20px;
    left: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    text-align: center;
}

/* Hero Section */
.hero {
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

.hero .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
}

/* Values Section */
.values {
    background-color: var(--light-bg);
}

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

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Solutions Section */
.solutions {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.solution-card {
    background-color: #34495e;
    padding: 2rem;
    border-radius: 8px;
}

.solution-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

.solution-card ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.solution-card li {
    margin-bottom: 0.8rem;
}

/* Reasons Section */
.reasons {
    background-color: var(--light-bg);
}

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

.reason-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Competencies Section */
.competencies {
    background-color: var(--primary-color);
    color: var(--white);
}

.competencies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.competency-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.competency-image {
    height: 100%;
}

.competency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.competency-content {
    padding: 1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    border-top: 1px solid #34495e;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
}

.copyright {
    font-size: 0.9rem;
    color: #a3b1c2;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .competency-card {
        grid-template-columns: 1fr;
    }
    
    .competency-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .values-grid, 
    .solutions-grid, 
    .reasons-grid, 
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent.small {
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .value-card, 
    .solution-card, 
    .reason-card, 
    .faq-item {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.thank-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}