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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    color: #e8ff8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e8ff8a;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: #d4f070;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #666666;
}

.btn-secondary:hover {
    background-color: #444444;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #e8ff8a;
    border: 2px solid #e8ff8a;
}

.btn-outline:hover {
    background-color: #e8ff8a;
    color: #0a0a0a;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(0);
}

.btn-outline .btn-icon {
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

/* Header */
.header {
    background-color: #111111;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #e8ff8a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

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

.banner-content {

    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.banner-advantages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e8ff8a;
    font-weight: 500;
}

.advantage-icon {
    font-size: 1.2rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background-color: #111111;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-text h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.company-features {
    list-style: none;
    margin-top: 2rem;
}

.company-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.company-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8ff8a;
    font-weight: bold;
}

.company-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
    background-color: #111111;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e8ff8a;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #cccccc;
    font-weight: 500;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: #111111;
}

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

.service-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.service-card h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.3rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e8ff8a;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.pricing-card {
    background-color: #111111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #333333;
}

.pricing-card.featured {
    border-color: #e8ff8a;
    position: relative;
}

.pricing-card.featured::before {
    content: "NEJPOPULÁRNĚJŠÍ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e8ff8a;
    color: #0a0a0a;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
}

.price-currency {
    font-size: 1rem;
    color: #cccccc;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8ff8a;
    font-weight: bold;
}

/* Subscription */
.subscription {
    padding: 80px 0;
    background-color: #111111;
}

.subscription-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscription-content h2 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.subscription-form {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

/* Forms */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid #333333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e8ff8a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #cccccc;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkmark {
    position: relative;
    margin-right: 0.5rem;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.contact-details h3 {
    color: #e8ff8a;
    margin-bottom: 0.5rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: #999999;
}

.quick-contact {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #111111;
    border-radius: 10px;
}

.quick-contact h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #e8ff8a;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.page-header h1 {
    color: #e8ff8a;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background-color: #111111;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    color: #e8ff8a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-document ul,
.legal-document ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

/* Service Categories */
.services-detailed {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.service-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.category-text h2 {
    color: #e8ff8a;
    margin-bottom: 0.5rem;
}

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

.service-item {
    background-color: #111111;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #e8ff8a;
    transform: translateY(-3px);
}

.service-item h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.service-item ul {
    list-style: none;
    margin: 1rem 0;
}

.service-item li {
    padding: 0.3rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.service-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e8ff8a;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e8ff8a;
    margin-top: 1rem;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background-color: #111111;
}

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

.review-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e8ff8a;
}

.review-stars {
    color: #e8ff8a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #cccccc;
}

.review-author {
    color: #ffffff;
}

.review-author span {
    color: #999999;
    font-size: 0.9rem;
}

/* CTA */
.cta {
    padding: 80px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.cta-content h2 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

.faq-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.area-item {
    background-color: #111111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.area-item h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #e8ff8a;
    margin-bottom: 2rem;
}

.story-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Values */
.values {
    padding: 80px 0;
    background-color: #111111;
}

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

.value-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.value-card h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

/* Team */
.team {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.team-member {
    background-color: #111111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.team-member h3 {
    color: #e8ff8a;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #999999;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #cccccc;
}

/* Certificates */
.certificates {
    padding: 80px 0;
    background-color: #111111;
}

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

.certificate-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.certificate-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.certificate-item h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0;
    background-color: #0a0a0a;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.thank-you h1 {
    color: #e8ff8a;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.thank-you-details {
    margin-bottom: 3rem;
}

.thank-you-details h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    background-color: #e8ff8a;
    color: #0a0a0a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #e8ff8a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #cccccc;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.emergency-contact {
    background-color: #111111;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.emergency-contact h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.emergency-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.emergency-phone,
.emergency-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e8ff8a;
    font-weight: 500;
    text-decoration: none;
}

.emergency-phone:hover,
.emergency-email:hover {
    color: #ffffff;
}

.additional-services {
    padding: 80px 0;
    background-color: #111111;
    text-align: center;
}

.additional-services h2 {
    color: #e8ff8a;
    margin-bottom: 3rem;
}

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

.service-preview-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.service-preview-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(85%) sepia(94%) saturate(394%) hue-rotate(36deg) brightness(104%) contrast(104%);
}

.service-preview-card h3 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

/* Cookie Settings */
.cookie-settings-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 10px;
    text-align: center;
}

.cookie-settings-section h2 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111111;
    border-top: 2px solid #e8ff8a;
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    color: #cccccc;
    margin: 0;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #111111;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #333333;
}

.cookie-modal-header h3 {
    color: #e8ff8a;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #e8ff8a;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category label {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-category p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-left: 1.5rem;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 60px 0 20px;
    border-top: 1px solid #333333;
}

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

.footer-section h4 {
    color: #e8ff8a;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e8ff8a;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999999;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #e8ff8a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-advantages {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid,
    .services-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .cta-buttons,
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .thank-you h1 {
        font-size: 2rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}
