/* Base styles */
:root {
    --primary-color: #D73A24;
    --secondary-color: #6fc84e;
    --text-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --dark-gray: #444444;
    --border-color: #dddddd;
    --button-hover: #c12512;
    --button-secondary-hover: #5ab53d;
    --max-width: 1200px;
    --font-primary: 'Arial', sans-serif;
}

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

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

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

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

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

section {
    padding: 60px 0;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--dark-gray);
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    border: 2px solid var(--dark-gray);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    color: var(--light-color);
}

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

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero section */
.hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

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

/* About section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Services section */
.services {
    background-color: var(--gray-color);
}

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

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

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

.service-card h3 {
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
}

/* Features section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    margin-bottom: 15px;
    height: 150px;
    display: flex;
    justify-content: center;
}

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

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

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

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

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

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

input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-primary);
}

textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Thank you page */
.thank-you {
    padding: 80px 0;
}

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

.thank-you-image {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: var(--light-color);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-color);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-icon {
    flex-shrink: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-shrink: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}