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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

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

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: #ffa930;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffb84d;
}

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

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

.btn-primary {
    background-color: #ffa930;
    color: #1a1a1a !important;
}

.btn-primary:hover {
    background-color: #ffb84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 169, 48, 0.3);
}

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

.btn-secondary:hover {
    background-color: #444444;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: #ffa930;
    color: #1a1a1a;
    transform: translateY(-2px);
}

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

/* Header */
.header {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffa930;
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffa930;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e5e5e5;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.bg-dark {
    background-color: #2a2a2a;
}

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

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

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

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.5;
}

.page-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

/* Company Section */
.company-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.company-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444444;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 169, 48, 0.1);
}

.benefit-card h3 {
    color: #ffa930;
    margin-bottom: 1rem;
}

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

.team-member {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #444444;
}

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

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

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

.member-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Tabs */
.services-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    background-color: #333333;
    color: #e5e5e5;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-button.active,
.tab-button:hover {
    background-color: #ffa930;
    color: #1a1a1a;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.service-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: block;
}

.tab-pane h3 {
    margin-bottom: 1rem;
    color: #ffa930;
}

.tab-pane ul {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto 0;
    list-style: none;
}

.tab-pane li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tab-pane li::before {
    content: '✓';
    color: #ffa930;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffa930;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: #cccccc;
}

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

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

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

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

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: #ffa930;
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #ffa930;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #ffffff;
}

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

.social-links h4 {
    margin-bottom: 1rem;
    color: #ffa930;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background-color: #333333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #ffa930;
    color: #1a1a1a;
}

/* Forms */
.contact-form {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #555555;
    border-radius: 5px;
    background-color: #333333;
    color: #e5e5e5;
    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: #ffa930;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    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 h4 {
    color: #ffa930;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffa930;
}

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

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

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

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

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

/* Cookie Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
}

.close:hover {
    color: #ffa930;
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

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

.toggle-slider {
    width: 50px;
    height: 24px;
    background-color: #555555;
    border-radius: 12px;
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background-color: #ffa930;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider::after {
    transform: translateX(26px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #444444;
    text-align: right;
}

/* About Page Styles */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.specialist-card {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    transition: transform 0.3s ease;
}

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

.specialist-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.specialist-info h3 {
    color: #ffa930;
    margin-bottom: 0.5rem;
}

.specialist-title {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.specialist-qualifications,
.specialist-expertise {
    clear: both;
    margin-top: 1rem;
}

.specialist-qualifications h4,
.specialist-expertise h4 {
    color: #ffa930;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.specialist-qualifications ul {
    list-style: none;
    padding-left: 0;
}

.specialist-qualifications li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.specialist-qualifications li::before {
    content: '•';
    color: #ffa930;
    position: absolute;
    left: 0;
}

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

.principle-card {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    transition: transform 0.3s ease;
    position: relative;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 169, 48, 0.1);
}

.principle-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background-color: #ffa930;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.principle-card h3 {
    color: #ffa930;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

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

.quality-feature {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
}

.quality-feature h3 {
    color: #ffa930;
    margin-bottom: 1rem;
}

.quality-certifications {
    margin-top: 3rem;
}

.quality-certifications h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffa930;
}

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

.certification-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #333333;
    border-radius: 10px;
    border: 1px solid #444444;
}

.certification-item h4 {
    color: #ffa930;
    margin-bottom: 0.5rem;
}

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

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

/* Services Page Styles */
.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #444444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 169, 48, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #333333;
}

.service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-title h2 {
    color: #ffa930;
    margin-bottom: 0.5rem;
}

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

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

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

.service-content {
    padding: 2rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e5e5e5;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    color: #ffa930;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

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

.service-features li::before {
    content: '✓';
    color: #ffa930;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.service-option {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #444444;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-option:hover {
    transform: translateY(-2px);
    border-color: #ffa930;
}

.service-option h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffa930;
    margin-bottom: 0.5rem;
}

.service-option p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Additional Info Section */
.additional-info {
    padding: 3rem 0;
}

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

.info-card {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
}

.info-card h3 {
    color: #ffa930;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

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

.info-card li::before {
    content: '✓';
    color: #ffa930;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Page Styles */
.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    padding: 1.5rem;
    background-color: #333333;
    border-radius: 10px;
    border: 1px solid #444444;
}

.contact-method h3 {
    color: #ffa930;
    margin-bottom: 1rem;
}

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

.contact-form-detailed {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
}

.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;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #555555;
    border-radius: 3px;
    background-color: #333333;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: bold;
    font-size: 12px;
}

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

.contact-option {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    text-align: center;
}

.contact-option h3 {
    color: #ffa930;
    margin-bottom: 1rem;
}

/* Social Platforms */
.social-section {
    padding: 3rem 0;
}

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

.social-platform {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #333333;
    border-radius: 10px;
    border: 1px solid #444444;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-platform:hover {
    transform: translateY(-2px);
    border-color: #ffa930;
}

.social-icon {
    width: 48px;
    height: 48px;
    background-color: #ffa930;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
}

.social-content h3 {
    color: #ffa930;
    margin-bottom: 0.5rem;
}

.social-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

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

.faq-item {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    margin-bottom: 1rem;
}

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

.faq-item p {
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background-color: #1a1a1a;
}

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

.legal-content h1 {
    color: #ffa930;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: #888888;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: #ffa930;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    color: #ffa930;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

.contact-box {
    background-color: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
    color: #e5e5e5;
}

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

.cookie-table h4 {
    color: #ffa930;
    margin-bottom: 1rem;
}

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

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

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

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

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

/* Cookie Settings Preview */
.cookie-settings-preview {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 10px;
    border: 1px solid #444444;
}

/* Browser Instructions */
.browser-instructions {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #444444;
    margin: 2rem 0;
}

.browser-instructions h4 {
    color: #ffa930;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.browser-instructions h4:first-child {
    margin-top: 0;
}

.browser-instructions ol {
    color: #cccccc;
    line-height: 1.6;
}

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

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

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

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

.confirmation-details {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid #444444;
}

.confirmation-details h2 {
    color: #ffa930;
    margin-bottom: 2rem;
}

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

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: #ffa930;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.step-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

.thank-you-info {
    background-color: #333333;
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #444444;
}

.thank-you-info h2 {
    color: #ffa930;
    margin-bottom: 1rem;
}

.urgent-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
}

.contact-method strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    margin: 3rem 0;
}

.additional-resources {
    margin: 4rem 0;
}

.additional-resources h2 {
    color: #ffa930;
    margin-bottom: 2rem;
}

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

.resource-card {
    background-color: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    text-align: left;
}

.resource-card h3 {
    color: #ffa930;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.resource-link {
    color: #ffa930;
    font-weight: 500;
    text-decoration: underline;
}

.resource-link:hover {
    color: #ffb84d;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-content,
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .urgent-contact {
        flex-direction: column;
        gap: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

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

    .specialist-photo {
        float: none;
        display: block;
        margin: 0 auto 1rem;
    }

    .specialist-info {
        text-align: center;
    }

    .specialist-qualifications,
    .specialist-expertise {
        text-align: left;
    }

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

    .step {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .benefits-grid,
    .team-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cookie-table {
        overflow-x: auto;
    }

    .cookie-table table {
        min-width: 500px;
        font-size: 0.8rem;
    }

    .thank-you-icon svg {
        width: 80px;
        height: 80px;
    }
    [class*="-grid"], .quality-features, .service-options, .alternative-contacts {
        grid-template-columns: 1fr;
    }
    body {
        word-break: break-word;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .section {
        padding: 20px 0;
    }

    .page-break {
        page-break-before: always;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000000;
    }

    .benefit-card,
    .team-member,
    .review-card,
    .service-card {
        border: 2px solid #ffffff;
    }
}
