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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    word-break: break-word;
}

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

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

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

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

a:hover {
    color: #66d61a;
}

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

.btn-primary {
    background-color: #7df720;
    color: #0a0a0a !important;
}

.btn-primary:hover {
    background-color: #66d61a;
    transform: translateY(-2px);
}

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

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

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

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

/* Header */
.header {
    background-color: #111111;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7df720;
}

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

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #7df720;
}

.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 */
.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

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

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

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.bg-dark {
    background-color: #111111;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

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

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

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

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.feature-card h3 {
    color: #7df720;
    margin-bottom: 1rem;
}

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

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

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

.expert-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #7df720;
}

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

.expert-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.expert-title {
    color: #7df720;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.advantage-card h3 {
    color: #7df720;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.review-rating {
    color: #7df720;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    color: #7df720;
    font-weight: 600;
    margin-top: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

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

.contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.contact-item h3 {
    color: #7df720;
    margin-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7df720;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #333333;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #7df720;
    border-color: #7df720;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: #0a0a0a;
    font-weight: bold;
}

/* Company Cards */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.company-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.company-header {
    padding: 1.5rem;
    background-color: #222222;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #7df720;
}

.company-basic-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #7df720;
    font-size: 1.2rem;
}

.rating-value {
    color: #cccccc;
    font-size: 0.9rem;
}

.company-content {
    padding: 1.5rem;
}

.company-description {
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 24px;
    height: 24px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: #7df720;
    font-weight: 600;
    font-size: 1.1rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.8rem;
}

.company-advantages {
    margin-bottom: 1.5rem;
}

.company-advantages h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.company-advantages ul {
    list-style: none;
    padding-left: 0;
}

.company-advantages li {
    color: #cccccc;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

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

.company-equipment h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.equipment-tag {
    background-color: #333333;
    color: #7df720;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Filter Section */
.filter-section {
    background-color: #111111;
    padding: 2rem 0;
}

.filter-controls h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.filter-group select {
    padding: 8px;
    border: 2px solid #333333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.team-member {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #7df720;
    overflow: hidden;
    flex-shrink: 0;
}

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

.member-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #7df720;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background-color: #333333;
    color: #7df720;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #7df720;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: #7df720;
    border-radius: 50%;
}

.timeline-year {
    color: #7df720;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-card h3 {
    color: #7df720;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-section {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
}

.contact-methods {
    margin: 2rem 0;
}

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

.contact-method-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-method-info h3 {
    color: #7df720;
    margin-bottom: 0.5rem;
}

.method-note {
    color: #999999;
    font-size: 0.9rem;
}

.business-hours {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.business-hours h3 {
    color: #7df720;
    margin-bottom: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.hours-item:last-child {
    border-bottom: none;
}

.contact-form-section {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-section h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Market Analysis */
.market-analysis {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.analysis-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.trend-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.indicator {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.indicator h4 {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.indicator-value {
    color: #7df720;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.indicator-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.indicator-change.positive {
    color: #7df720;
}

.indicator-change.negative {
    color: #ff4444;
}

.analysis-image {
    text-align: center;
}

.analysis-img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Comparison Tool */
.comparison-tool {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
}

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

.selector-group {
    display: flex;
    flex-direction: column;
}

.selector-group label {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.selector-group select {
    padding: 12px;
    border: 2px solid #333333;
    border-radius: 5px;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
}

.comparison-result {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    min-height: 200px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333333;
}

.comparison-table th {
    background-color: #333333;
    color: #7df720;
    font-weight: 600;
}

.comparison-table td {
    color: #cccccc;
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.service-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222222;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #333333;
}

.faq-question h3 {
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    color: #7df720;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #cccccc;
    margin: 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

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

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

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

.next-steps {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.next-steps h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.step-item {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #7df720;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: #7df720;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

.quick-access {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-access h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.quick-link {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: block;
}

.quick-link:hover {
    transform: translateY(-5px);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.quick-link h3 {
    color: #7df720;
    margin-bottom: 0.5rem;
}

.quick-link p {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.support-info h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.contact-option {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-option-icon {
    width: 40px;
    height: 40px;
}

.contact-option h3 {
    color: #7df720;
    margin-bottom: 0.5rem;
}

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

/* Legal Content */
.legal-content {
    background-color: #0a0a0a;
}

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

.legal-text h2 {
    color: #7df720;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.contact-info {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #7df720;
}

/* Cookie Tables */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333333;
}

.cookie-table th {
    background-color: #333333;
    color: #7df720;
    font-weight: 600;
}

.cookie-table td {
    color: #cccccc;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

/* Cookie Management */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1rem;
    z-index: 1000;
    border-top: 3px solid #7df720;
}

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

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

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

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

.cookie-notice.hidden {
    display: none;
}

/* Cookie Settings Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #cccccc;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: #7df720;
}

.modal-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #222222;
    border-radius: 10px;
}

.cookie-category h3 {
    color: #7df720;
    margin-bottom: 0.5rem;
}

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

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    float: right;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333333;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #7df720;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #666666;
    cursor: not-allowed;
}

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

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

.footer-section h3 {
    color: #7df720;
    margin-bottom: 1rem;
}

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

.footer-section ul {
    list-style: none;
}

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

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

.footer-section a:hover {
    color: #7df720;
}

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

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

.social-link:hover {
    color: #7df720;
}

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

.footer-bottom p {
    color: #666666;
    margin: 0;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-content p {
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Company Overview */
.company-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-content {
    line-height: 1.7;
}

.overview-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.overview-image {
    text-align: center;
}

.overview-img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Mission Content */
.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.mission-text h3 {
    color: #7df720;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7df720;
    font-weight: bold;
}

.mission-image {
    text-align: center;
}

.mission-img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #111111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-selectors {
        grid-template-columns: 1fr;
    }

    .market-analysis {
        grid-template-columns: 1fr;
    }

    .company-overview {
        grid-template-columns: 1fr;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .member-avatar {
        align-self: center;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .trend-indicators {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .cookie-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .features-grid,
    .experts-grid,
    .advantages-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .equipment-tags {
        justify-content: center;
    }

    .member-expertise {
        justify-content: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}
