/* 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: #1a1a1a;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

h2 {
    font-size: 2rem;
    color: #f060e6;
}

h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

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

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

.btn-primary {
    background-color: #f060e6;
    color: #ffffff;
    border-color: #f060e6;
}

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

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

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

.btn-outline {
    background-color: transparent;
    color: #f060e6;
    border-color: #f060e6;
}

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

/* Navigation */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333333;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f060e6;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.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;
}

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

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

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

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

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

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

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

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

/* About Section */
.about-section {
    background-color: #222222;
    padding: 80px 0;
}

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

.about-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

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

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f060e6;
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    border-radius: 10px;
    border: 1px solid #444444;
}

.stat-item h4 {
    font-size: 2rem;
    color: #f060e6;
    margin-bottom: 0.5rem;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
}

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

.advantage-card {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #444444;
}

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

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

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

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

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

.tab-btn {
    padding: 12px 24px;
    background-color: transparent;
    color: #cccccc;
    border: 2px solid #444444;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #f060e6;
    color: #ffffff;
    border-color: #f060e6;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

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

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

.service-card {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #444444;
}

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

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

/* Services Detail Section */
.services-detail-section {
    padding: 80px 0;
}

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

.service-category h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #f060e6;
}

.service-detail-card {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    transition: transform 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

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

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

.service-content {
    flex: 1;
}

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

.stars {
    color: #ffd700;
}

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

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

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f060e6;
}

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

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

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

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

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

.review-card {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    transition: transform 0.3s ease;
}

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

.review-rating {
    margin-bottom: 1rem;
}

.review-rating span {
    font-size: 1.2rem;
}

.review-author {
    margin-top: 1.5rem;
    border-top: 1px solid #444444;
    padding-top: 1rem;
}

.review-author strong {
    color: #f060e6;
}

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

/* Contact Section */
.contact-section,
.contact-page-section {
    background-color: #222222;
    padding: 80px 0;
}

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

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

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

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f060e6;
}

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

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
}

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

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

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

.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;
}

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

.checkbox-label a {
    color: #f060e6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #444444;
    margin-top: 2rem;
}

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

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

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

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

/* Social Contact */
.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: #f060e6;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-link img {
    width: 24px;
    height: 24px;
}

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

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

.faq-item {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #444444;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: rgba(240, 96, 230, 0.1);
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: #f060e6;
    transition: transform 0.3s ease;
}

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

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

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

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

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

.team-member {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #444444;
    transition: transform 0.3s ease;
}

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

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

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

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

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

/* About Content Section */
.about-content-section {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.about-icon {
    width: 120px;
    height: 120px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission,
.vision {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    text-align: center;
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

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

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

.value-item {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #444444;
    transition: transform 0.3s ease;
}

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f060e6 0%, #d84dc7 100%);
    padding: 80px 0;
    text-align: center;
}

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

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

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #f060e6;
    border-color: #ffffff;
}

.cta-section .btn-primary:hover {
    background-color: #f8f8f8;
}

.cta-section .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.cta-section .btn-outline:hover {
    background-color: #ffffff;
    color: #f060e6;
}

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

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

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

.success-icon {
    width: 100px;
    height: 100px;
}

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

.thank-you-details {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    margin-bottom: 3rem;
}

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

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

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

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

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

.contact-info-box {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    margin-bottom: 3rem;
}

.contact-info-box h3 {
    color: #f060e6;
    margin-bottom: 1rem;
}

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

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

.contact-method img {
    width: 24px;
    height: 24px;
}

.contact-method a {
    color: #ffffff;
    text-decoration: none;
}

.contact-method a:hover {
    color: #f060e6;
}

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

/* Additional Services */
.additional-services {
    background-color: #222222;
    padding: 80px 0;
    text-align: center;
}

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

.service-preview-card {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    transition: transform 0.3s ease;
}

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

.service-preview-card .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

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

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #444444;
}

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

.legal-section h2 {
    color: #f060e6;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.legal-footer p {
    margin: 0;
    color: #999999;
    font-style: italic;
}

/* Cookie Management */
.cookie-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #444444;
}

.cookie-item h4 {
    color: #f060e6;
    margin-bottom: 0.5rem;
}

.cookie-item p {
    margin-bottom: 0.5rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 1.5rem;
    border-top: 2px solid #f060e6;
    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;
    text-align: center;
}

.cookie-content h3 {
    color: #f060e6;
    margin-bottom: 1rem;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

    .urgent-contact {
        flex-direction: column;
        align-items: center;
    }

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

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .service-detail-card {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-card .service-icon {
        margin: 0 auto 1rem;
    }

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

    .legal-document {
        padding: 2rem;
    }
}

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

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

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

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

    .legal-document {
        padding: 1.5rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    body {
        word-break: break-word;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #f060e6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
