/* General Styles */
:root {
    --primary-color: rgba(195, 30, 47, 1);
    --dark-primary: #a61b2c;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #fff;
    --black: #000;
}

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

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--dark-gray);
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 90px 0;
}

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

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

/* Info Blocks */
.info-blocks {
    background-color: var(--primary-color);
    color: var(--white);
    
}

.info-block {
  padding: 40px 20px;
}

.info-block:nth-child(2) {
  background: rgba(180, 21, 37, 1);
}

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 14px;
}

/* About Company */
.about-company {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

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

.about-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

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

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-card p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Resources Section */
.resources {
    padding: 60px 0;
}

.resources h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

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

.resource-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.resource-item p {
    font-size: 14px;
    color: var(--dark-gray);
}

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

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

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

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

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

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

#contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.phone-group {
    display: flex;
    align-items: center;
}

.phone-prefix {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 0 10px;
    border-radius: 4px 0 0 4px;
    height: 44px;
}

.phone-prefix img {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.phone-group input {
    border-radius: 0 4px 4px 0;
}

.btn-submit {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 18px;
}

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

.footer-links a {
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.footer-policy {
    display: flex;
    gap: 15px;
}

.footer-policy a {
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: var(--primary-color);
}

/* Thank You Page */
.thank-you-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thank-you-container {
    max-width: 500px;
    padding: 30px;
}

.thank-you-container h1 {
    margin-bottom: 30px;
}

.thank-you-content {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.thank-you-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-grid,
    .services-grid,
    .resources-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 24px;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

.about-company ul li {
  list-style-type: disc;
  list-style-position: inside;
}

.about-content ul {
  margin-bottom: 15px;
}

.about-content h1 {
  text-transform: uppercase;
  margin-bottom: 20px;
}