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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    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: #b0b0b0;
}

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

a:hover {
    color: #ff9679;
}

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

.btn-primary {
    background-color: #ff7859;
    color: #ffffff !important;
}

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

.btn-secondary {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #404040;
}

.btn-secondary:hover {
    background-color: #3a3a3a;
    border-color: #ff7859;
}

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

.btn-outline:hover {
    background-color: #ff7859;
    color: #ffffff;
}

/* Header */
.header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav {
    padding: 1rem 0;
}

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

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

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

.brand-text {
    display: none;
}

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

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

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

.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 {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
}

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

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #ff7859);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

section {
    padding: 60px 0;
}

.about-section {
    background-color: #1f1f1f;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.about-image img {
    width: 200px;
    height: 200px;
    filter: invert(1);
    opacity: 0.8;
}

/* Services */
.services-section {
    background-color: #1a1a1a;
}

.services-tabs {
    max-width: 800px;
    margin: 0 auto;
}

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

.tab-button {
    padding: 10px 20px;
    background-color: #2a2a2a;
    color: #b0b0b0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background-color: #ff7859;
    color: #ffffff;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #404040;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}

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

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.service-card li:before {
    content: "✓";
    color: #ff7859;
    margin-right: 0.5rem;
}

/* Advantages */
.advantages-section {
    background-color: #1f1f1f;
}

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

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

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 120, 89, 0.2);
}

.advantage-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}

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

/* Team */
.team-section {
    background-color: #1a1a1a;
}

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

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

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}

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

.team-member p:first-of-type {
    color: #ff7859;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Reviews */
.reviews-section {
    background-color: #1f1f1f;
}

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

.review-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

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

.review-card cite {
    color: #ff7859;
    font-style: italic;
    margin-top: 1rem;
    display: block;
}

/* Contact */
.contact-section {
    background-color: #1a1a1a;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item img {
    width: 30px;
    height: 30px;
    filter: invert(1);
    opacity: 0.8;
}

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

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

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

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

.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 #404040;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

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

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

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

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

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

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

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

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

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

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    border-top: 1px solid #404040;
    padding: 1rem;
    z-index: 1000;
    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-content h3 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

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

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

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #404040;
}

.close {
    float: right;
    font-size: 1.5rem;
    color: #b0b0b0;
    cursor: pointer;
}

.close:hover {
    color: #ff7859;
}

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

.cookie-category h4 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #404040;
    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: #ff7859;
}

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

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #ff7859);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Page Specific */
.company-info {
    background-color: #1f1f1f;
}

.info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.values-section {
    background-color: #1a1a1a;
}

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

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

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}

.team-detail-section {
    background-color: #1f1f1f;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

.team-member-detail img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: invert(1);
    opacity: 0.8;
}

.member-info .title {
    color: #ff7859;
    font-weight: 500;
}

.member-info .experience {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 1rem;
}

.qualifications,
.specialties {
    margin-bottom: 1rem;
}

.qualifications h4,
.specialties h4 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

.qualifications ul,
.specialties ul {
    list-style: none;
    margin-left: 0;
}

.qualifications li,
.specialties li {
    padding: 0.25rem 0;
    color: #b0b0b0;
}

.qualifications li:before,
.specialties li:before {
    content: "•";
    color: #ff7859;
    margin-right: 0.5rem;
}

.history-section {
    background-color: #1a1a1a;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-year {
    background-color: #ff7859;
    color: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.timeline-content {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

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

.statistics-section {
    background-color: #1f1f1f;
}

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

.stat-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #404040;
}

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

.stat-label {
    color: #b0b0b0;
    font-weight: 500;
}

.cta-section {
    background-color: #1a1a1a;
    text-align: center;
}

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

/* Services Page Specific */
.services-overview {
    background-color: #1f1f1f;
}

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

.service-card.detailed {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    text-align: left;
}

.service-card.detailed img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ff7859;
}

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

.service-features {
    margin: 1.5rem 0;
}

.service-features h4 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

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

.service-features li {
    padding: 0.25rem 0;
    color: #b0b0b0;
}

.service-features li:before {
    content: "✓";
    color: #ff7859;
    margin-right: 0.5rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff7859;
}

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

.service-packages {
    background-color: #1a1a1a;
}

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

.package-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    text-align: center;
    position: relative;
}

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

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #ff7859;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-price {
    margin: 1rem 0;
}

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

.package-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.package-features li:before {
    content: "✓";
    color: #ff7859;
    margin-right: 0.5rem;
}

.process-section {
    background-color: #1f1f1f;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: center;
}

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

.step-content {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

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

.faq-section {
    background-color: #1a1a1a;
}

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

.faq-item {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

.faq-item h3 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

/* Contact Page Specific */
.contact-main {
    background-color: #1f1f1f;
}

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

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

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

.contact-item img {
    width: 30px;
    height: 30px;
    filter: invert(1);
    opacity: 0.8;
    margin-top: 0.5rem;
}

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

.contact-note {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.office-hours {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
    margin-top: 2rem;
}

.office-hours h3 {
    color: #ff7859;
    margin-bottom: 1rem;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #404040;
}

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

.day {
    color: #b0b0b0;
}

.time {
    color: #ffffff;
    font-weight: 500;
}

.emergency-contact {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
    margin-top: 2rem;
}

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

.emergency-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff7859;
}

.emergency-note {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

.additional-services {
    background-color: #1a1a1a;
}

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

.service-item {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
    text-align: center;
}

.service-item img {
    width: 40px;
    height: 40px;
    filter: invert(1);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

.service-item .service-price {
    color: #ff7859;
    font-weight: 600;
    margin-top: 1rem;
}

.map-section {
    background-color: #1f1f1f;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-placeholder {
    background-color: #2a2a2a;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #404040;
    text-align: center;
}

.map-placeholder img {
    width: 60px;
    height: 60px;
    filter: invert(1);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.map-text h3 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

.directions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-item {
    background-color: #2a2a2a;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

.direction-item strong {
    color: #ff7859;
}

.social-section {
    background-color: #1a1a1a;
}

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

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #2a2a2a;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 2rem;
}

.social-text h3 {
    color: #ff7859;
    margin-bottom: 0.25rem;
}

.social-text p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.contact-faq {
    background-color: #1f1f1f;
}

/* Thanks Page Specific */
.thank-you-section {
    background-color: #1f1f1f;
    padding: 80px 0;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    filter: invert(1);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: #ff7859;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

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

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

.step-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    text-align: center;
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background-color: #ff7859;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.contact-reminder {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    margin-bottom: 3rem;
}

.contact-reminder h2 {
    color: #ff7859;
    margin-bottom: 1rem;
}

.contact-reminder .contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.contact-reminder .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-reminder .contact-item img {
    width: 30px;
    height: 30px;
    filter: invert(1);
    opacity: 0.8;
}

.helpful-links {
    margin-bottom: 3rem;
}

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

.link-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    text-align: center;
    transition: all 0.3s ease;
}

.link-card:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
}

.link-card img {
    width: 60px;
    height: 60px;
    filter: invert(1);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.link-card h3 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

.testimonial {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    margin-bottom: 3rem;
}

.testimonial h2 {
    color: #ff7859;
    margin-bottom: 1rem;
}

.testimonial blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #ff7859;
    font-weight: 500;
}

.social-share {
    margin-bottom: 3rem;
}

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

.social-btn {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-content {
    background-color: #1f1f1f;
    padding: 60px 0;
}

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

.content-text h2 {
    color: #ff7859;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

.content-text li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.cookie-details {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
    margin: 1rem 0;
}

.cookie-details h4 {
    color: #ff7859;
    margin-bottom: 0.5rem;
}

.cookie-details ul {
    margin-left: 1rem;
}

.cookie-controls {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #404040;
    margin: 2rem 0;
    text-align: center;
}

.cookie-controls h4 {
    color: #ff7859;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #2a2a2a;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .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 h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .team-member-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
    
    .contact-reminder .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links-large {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .advantages-grid,
    .services-grid,
    .packages-grid,
    .faq-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    
    .banner h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    body {
        word-break: break-word;
    }
}
