/* 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;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

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

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

a:hover {
    color: #14e6a5;
}

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

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

.btn-primary {
    background-color: #17ffb9;
    color: #0a0a0a !important;
}

.btn-primary:hover {
    background-color: #14e6a5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 255, 185, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #17ffb9;
    border: 2px solid #17ffb9;
}

.btn-secondary:hover {
    background-color: #17ffb9;
    color: #0a0a0a;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 3px solid #17ffb9;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    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: 20px;
}

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

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

/* 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: 30px;
    border: 1px solid #333;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #17ffb9;
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    background-color: #0f0f0f;
    border-radius: 6px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 8px;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-category p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

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

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17ffb9;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #17ffb9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

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

.hero-advantages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.advantage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.advantage-icon {
    color: #17ffb9;
    font-size: 1.2rem;
    font-weight: bold;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: linear-gradient(135deg, #17ffb9 0%, #14e6a5 100%);
}

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

.achievement-item {
    text-align: center;
    color: #0a0a0a;
}

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

.achievement-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(23, 255, 185, 0.1);
    border-color: #17ffb9;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #0f0f0f;
}

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

.pricing-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: #17ffb9;
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #17ffb9;
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #17ffb9;
}

.price-currency {
    font-size: 1.5rem;
    color: #cccccc;
    margin-left: 5px;
}

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

.price-features li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
}

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

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #ffffff;
}

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

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

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

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #17ffb9 0%, #14e6a5 100%);
}

.newsletter-content {
    text-align: center;
    color: #0a0a0a;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #0a0a0a;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    margin: 0;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0a0a0a;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 15px 25px;
    white-space: nowrap;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #cccccc;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #17ffb9;
    color: #0a0a0a;
    transform: translateY(-3px);
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.footer-links a {
    color: #999;
    margin-left: 20px;
}

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

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

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

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

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

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

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-card,
.vision-card {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
}

.card-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: #0f0f0f;
}

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

.team-member {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(23, 255, 185, 0.1);
    border-color: #17ffb9;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #17ffb9;
}

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

.member-role {
    color: #17ffb9;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.member-expertise span {
    background-color: #17ffb9;
    color: #0a0a0a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Values Section */
.values {
    padding: 100px 0;
    background-color: #0a0a0a;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #17ffb9 0%, #14e6a5 100%);
    text-align: center;
}

.cta-content {
    color: #0a0a0a;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #0a0a0a;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #cccccc;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #17ffb9;
    margin-bottom: 0.5rem;
}

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

/* Detailed Services */
.detailed-services {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.service-detail {
    margin-bottom: 100px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail.reverse .service-content {
    grid-template-columns: 1fr 2fr;
}

.service-detail.reverse .service-text {
    order: 2;
}

.service-detail.reverse .service-image {
    order: 1;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #cccccc;
}

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

.service-features h3,
.service-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #17ffb9;
}

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

.service-features li,
.service-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #cccccc;
}

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

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

.service-process h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #17ffb9;
}

.service-process ol {
    padding-left: 20px;
}

.service-process li {
    margin-bottom: 8px;
    color: #cccccc;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
}

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

.price-amount {
    color: #17ffb9;
    font-size: 2rem;
    font-weight: 700;
}

.price-note {
    color: #999;
    font-size: 0.9rem;
}

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

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.consultation-types {
    margin-bottom: 2rem;
}

.consultation-types h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #17ffb9;
}

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

.consultation-option {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
}

.consultation-option h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

.option-price {
    color: #17ffb9;
    font-weight: 600;
    font-size: 1.1rem;
}

.report-details {
    margin-bottom: 2rem;
}

.report-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #17ffb9;
}

/* Service Packages */
.service-packages {
    padding: 100px 0;
    background-color: #0f0f0f;
}

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

.package-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-card.featured {
    border-color: #17ffb9;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #17ffb9;
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.package-price {
    margin-bottom: 2rem;
}

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

.package-features li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
}

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

.package-btn {
    width: 100%;
}

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #17ffb9;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(23, 255, 185, 0.1);
    border-color: #17ffb9;
}

.contact-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.contact-card a {
    color: #17ffb9;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.form-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #cccccc;
}

.contact-features {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-checkmark {
    color: #17ffb9;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #0f0f0f;
    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: #17ffb9;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #cccccc;
    line-height: 1.5;
}

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

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 3px;
    position: relative;
    background-color: #0f0f0f;
    transition: all 0.3s ease;
}

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

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

/* Office Info */
.office-info {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.office-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.office-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #cccccc;
}

.office-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 2rem;
}

.office-feature h4 {
    color: #17ffb9;
    margin-bottom: 0.5rem;
}

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

.office-directions h4 {
    color: #17ffb9;
    margin-bottom: 1rem;
}

.office-directions ul {
    list-style: none;
    padding-left: 0;
}

.office-directions li {
    margin-bottom: 8px;
    color: #cccccc;
}

.office-directions strong {
    color: #ffffff;
}

.map-placeholder {
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
    border: 1px solid #333;
}

.map-bg {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.map-pin {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

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

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.emergency-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.emergency-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

.emergency-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.emergency-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

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

.emergency-text h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    color: #17ffb9;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.emergency-text span {
    color: #999;
    font-size: 0.9rem;
}

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

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

.legal-info {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid #333;
}

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

.legal-info strong {
    color: #17ffb9;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #17ffb9;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #17ffb9;
    padding-bottom: 0.5rem;
}

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

.legal-section h4 {
    font-size: 1.2rem;
    color: #17ffb9;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #cccccc;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #cccccc;
    line-height: 1.6;
}

.legal-section strong {
    color: #ffffff;
}

.cookie-provider {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.cookie-provider h4 {
    color: #17ffb9;
    margin-bottom: 0.5rem;
}

.cookie-table {
    overflow-x: auto;
    margin-top: 2rem;
}

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

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

.cookie-table th {
    background-color: #17ffb9;
    color: #0a0a0a;
    font-weight: 600;
}

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

/* Thank You Section */
.thank-you-section {
    padding: 120px 0 80px 0;
    background-color: #0f0f0f;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #17ffb9;
    margin-bottom: 1.5rem;
}

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

.next-steps {
    margin-bottom: 3rem;
}

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

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

.step-item {
    display: flex;
    gap: 20px;
    text-align: left;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    background-color: #17ffb9;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-reminder {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid #333;
}

.contact-reminder h3 {
    color: #17ffb9;
    margin-bottom: 1rem;
}

.contact-reminder p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    text-align: center;
    padding: 15px;
    background-color: #0f0f0f;
    border-radius: 8px;
    border: 1px solid #333;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #17ffb9;
    font-weight: 500;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Additional Resources */
.additional-resources {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.additional-resources h2 {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(23, 255, 185, 0.1);
    border-color: #17ffb9;
}

.resource-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

.resource-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Testimonials Preview */
.testimonials-preview {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.testimonials-preview h2 {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.testimonial-rating {
    color: #17ffb9;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #ffffff;
    display: block;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .office-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-advantages {
        gap: 10px;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-links a {
        margin-left: 0;
        margin-right: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail.reverse .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail.reverse .service-text {
        order: 1;
    }
    
    .service-detail.reverse .service-image {
        order: 2;
    }
    
    .consultation-options {
        grid-template-columns: 1fr;
    }
    
    .office-features {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .urgent-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-text h2,
    .form-info h2,
    .office-details h2,
    .emergency-info h2 {
        font-size: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .package-price .price-amount {
        font-size: 2.5rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .modal,
    .btn-primary,
    .btn-secondary,
    .social-links {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
    
    .section-header,
    .legal-section {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background-color: #000000;
        color: #ffffff;
    }
    
    .btn-primary {
        background-color: #00ff00;
        color: #000000;
    }
    
    .btn-secondary {
        border-color: #00ff00;
        color: #00ff00;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #00ff00;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid #17ffb9;
    outline-offset: 2px;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #17ffb9;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
