/* General Styles */
:root {
    --primary-color: #66b95a;
    --primary-dark: #529247;
    --primary-light: #8cd682;
    --secondary-color: #1e2739;
    --dark-blue: #182331;
    --text-color: #333333;
    --light-text: #ffffff;
    --gray-text: #777777;
    --light-gray: #f7f7f7;
    --border-color: #e0e0e0;
}

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

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--light-text);
}

h2 {
    font-size: 2rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
}

.section-footer {
    margin-top: 30px;
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    color: var(--primary-dark);
}

.btn-accept {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-configure {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    padding: 11px 23px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid var(--light-text);
    cursor: pointer;
}

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

/* Header */
header {
    background-color: var(--light-text);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 39, 57, 0.9), rgba(30, 39, 57, 0.9)), url('./img/1.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

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

.service-card {
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Industries Section */
.industries {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.industries h2 {
    color: var(--light-text);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.industry-card {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.industry-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

.about-image {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
}

.about-text {
    flex: 1;
}

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

.testimonials h2 {
    color: var(--light-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-weight: bold;
}

/* Blog Section */
.blog {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

.blog-image {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
}

.blog-text {
    flex: 1;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: var(--dark-blue);
    color: var(--light-text);
    text-align: center;
}

.contact h2 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

.contact-form button {
    width: 100%;
}

/* Thank You Page */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(30, 39, 57, 0.9), rgba(30, 39, 57, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 80px 0;
}

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

.thank-you-content h1 {
    margin-bottom: 20px;
}

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

.thank-you-content a {
    color: var(--primary-light);
}

.thank-you-content a.btn-primary {
    margin-top: 20px;
    display: inline-block;
    color: var(--light-text);
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    margin-bottom: 30px;
    text-align: center;
}

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

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.legal-content p, 
.legal-content ul {
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.terms-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 5px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-blue);
    color: var(--light-text);
    padding: 20px 0;
    z-index: 1000;
}

.cookie-notice h3 {
    color: var(--light-text);
    margin-bottom: 10px;
}

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

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

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

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

.footer-links a {
    margin-right: 20px;
    color: var(--gray-text);
}

.footer-copyright {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-content, 
    .blog-content {
        flex-direction: column;
    }
    
    .about-image, 
    .blog-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .service-card, 
    .industry-card, 
    .testimonial-card {
        padding: 20px;
    }
}