/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.logo p {
    font-size: 14px;
    color: #64748b;
}

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

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ec4899;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #475569;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 500;
}

.feature-icon {
    color: #ec4899;
    font-weight: bold;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ec4899;
    color: white;
}

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

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

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #fce7f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ec4899;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-link {
    color: #ec4899;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #db2777;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

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

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-cta .btn-primary {
    background: white;
    color: #ec4899;
}

.contact-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: white;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 8px;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Details */
.services-details {
    padding: 80px 0;
    background: white;
}

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

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-note {
    margin-top: 40px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.services-note p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

.services-note a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.services-note a:hover {
    text-decoration: underline;
}
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

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

.service-detail-card ul li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: bold;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #ec4899;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ec4899;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #ec4899;
    text-align: center;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

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

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* Process */
.process {
    padding: 80px 0;
    background: white;
}

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

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ec4899;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

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

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Specializations */
.specializations {
    padding: 80px 0;
    background: white;
}

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

.specialization-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.specialization-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

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

.specialization-card ul li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 16px;
}

.specialization-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: white;
}

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

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #fce7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ec4899;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: center;
}

.form-container p {
    color: #64748b;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

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

.privacy-link {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #db2777;
    text-decoration: underline;
}

.footer-bottom .privacy-link {
    color: #94a3b8;
}

.footer-bottom .privacy-link:hover {
    color: white;
}

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

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: #ec4899;
    font-weight: bold;
}

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

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-container {
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

/* Privacy Policy */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.privacy-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ec4899;
}

.privacy-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.privacy-section ul li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-section strong {
    color: #1e293b;
    font-weight: 600;
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.privacy-footer p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #64748b;
}

.privacy-footer strong {
    color: #1e293b;
}

/* Hero Stats */
.hero-stats {
    padding: 60px 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: white;
}

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

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
}

.story-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Timeline */
.timeline-section {
    padding: 80px 0;
    background: #f8fafc;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ec4899;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: #ec4899;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 30px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Values */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

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

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 20px;
}

.member-photo svg {
    border-radius: 50%;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.member-position {
    font-size: 16px;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 4px;
}

.member-experience {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.member-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.skill {
    background: #fce7f3;
    color: #ec4899;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Experience Timeline */
.experience-section {
    padding: 80px 0;
    background: white;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #ec4899;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin: 0 20px;
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

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

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Certificates Section */
.certificates-section {
    padding: 80px 0;
    background: white;
}

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

.certificate-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background: #fce7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ec4899;
}

.certificate-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.certificate-item p {
    color: #64748b;
    font-size: 14px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 80px;
}

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

.breadcrumbs-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
}

.breadcrumbs-item:not(:last-child)::after {
    content: '›';
    margin: 0 8px;
    color: #94a3b8;
}

.breadcrumbs-link {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-link:hover {
    color: #db2777;
    text-decoration: underline;
}

.breadcrumbs-current {
    color: #64748b;
    font-weight: 500;
}

/* Theme Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    color: #64748b;
}

.theme-toggle:hover {
    background: #fce7f3;
    color: #ec4899;
}

.theme-icon {
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(180deg);
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --accent-color: #ec4899;
    --accent-hover: #db2777;
    --shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .logo h1 {
    color: var(--text-primary);
}

[data-theme="dark"] .logo p {
    color: var(--text-secondary);
}

[data-theme="dark"] .nav-link {
    color: var(--text-secondary);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--accent-color);
}

[data-theme="dark"] .nav-menu {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .theme-toggle {
    color: var(--text-secondary);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--accent-color);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="dark"] .hero-title {
    color: var(--text-primary);
}

[data-theme="dark"] .hero-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .hero-feature {
    color: var(--text-secondary);
}

[data-theme="dark"] .services {
    background: var(--bg-primary);
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .service-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .service-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .service-link {
    color: var(--accent-color);
}

[data-theme="dark"] .service-link:hover {
    color: var(--accent-hover);
}

[data-theme="dark"] .about {
    background: var(--bg-secondary);
}

[data-theme="dark"] .about-text h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .about-text p {
    color: var(--text-secondary);
}

[data-theme="dark"] .about-features {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .feature-number {
    color: var(--accent-color);
}

[data-theme="dark"] .feature-text {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
}

[data-theme="dark"] .footer {
    background: var(--bg-secondary);
}

[data-theme="dark"] .footer-section h3,
[data-theme="dark"] .footer-section h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .footer-section p {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer-section ul li a {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer-section ul li a:hover {
    color: var(--text-primary);
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

[data-theme="dark"] .breadcrumbs {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .breadcrumbs-link {
    color: var(--accent-color);
}

[data-theme="dark"] .breadcrumbs-link:hover {
    color: var(--accent-hover);
}

[data-theme="dark"] .breadcrumbs-current {
    color: var(--text-secondary);
}

[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="dark"] .page-header h1 {
    color: var(--text-primary);
}

[data-theme="dark"] .hero-stats {
    background: var(--bg-secondary);
}

[data-theme="dark"] .stat-card {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .stat-number {
    color: var(--accent-color);
}

[data-theme="dark"] .stat-label {
    color: var(--text-secondary);
}

[data-theme="dark"] .our-story {
    background: var(--bg-primary);
}

[data-theme="dark"] .story-content h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .story-content p {
    color: var(--text-secondary);
}

[data-theme="dark"] .timeline-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .timeline::before {
    background: var(--accent-color);
}

[data-theme="dark"] .timeline-year {
    background: var(--accent-color);
}

[data-theme="dark"] .timeline-content {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .timeline-content h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .timeline-content p {
    color: var(--text-secondary);
}

[data-theme="dark"] .values-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .value-card {
    background: var(--bg-secondary);
}

[data-theme="dark"] .value-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .services {
    background: var(--bg-primary);
}

[data-theme="dark"] .service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .service-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .service-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .service-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-color);
}

[data-theme="dark"] .about {
    background: var(--bg-secondary);
}

[data-theme="dark"] .about-text h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .about-text p {
    color: var(--text-secondary);
}

[data-theme="dark"] .about-features {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .feature-number {
    color: var(--accent-color);
}

[data-theme="dark"] .feature-text {
    color: var(--text-secondary);
}

[data-theme="dark"] .services-details {
    background: var(--bg-primary);
}

[data-theme="dark"] .service-detail-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .service-detail-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .service-detail-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .service-detail-card ul li {
    color: var(--text-secondary);
}

[data-theme="dark"] .service-detail-card ul li::before {
    color: var(--accent-color);
}

[data-theme="dark"] .services-note {
    background: var(--bg-secondary);
    border-left-color: var(--accent-color);
}

[data-theme="dark"] .services-note p {
    color: var(--text-secondary);
}

[data-theme="dark"] .services-note a {
    color: var(--accent-color);
}

[data-theme="dark"] .pricing {
    background: var(--bg-secondary);
}

[data-theme="dark"] .pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .pricing-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .pricing-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .price {
    color: var(--accent-color);
}

[data-theme="dark"] .pricing-card ul li {
    color: var(--text-secondary);
}

[data-theme="dark"] .pricing-card ul li::before {
    color: var(--accent-color);
}

[data-theme="dark"] .process {
    background: var(--bg-primary);
}

[data-theme="dark"] .benefits {
    background: var(--bg-secondary);
}

[data-theme="dark"] .benefit-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .benefit-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .benefit-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .benefit-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-color);
}

[data-theme="dark"] .specializations {
    background: var(--bg-primary);
}

[data-theme="dark"] .specialization-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .specialization-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .specialization-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .specialization-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-color);
}

[data-theme="dark"] .contact-info {
    background: var(--bg-secondary);
}

[data-theme="dark"] .contact-form-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .form-group label {
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

[data-theme="dark"] .checkbox-group label {
    color: var(--text-secondary);
}

[data-theme="dark"] .faq {
    background: var(--bg-secondary);
}

[data-theme="dark"] .faq-question {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .faq-question h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .faq-answer {
    background: var(--bg-primary);
    color: var(--text-secondary);
}

[data-theme="dark"] .map-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .privacy-content {
    background: var(--bg-primary);
}

[data-theme="dark"] .privacy-document {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .privacy-document h1 {
    color: var(--text-primary);
}

[data-theme="dark"] .privacy-document h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .privacy-document h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .privacy-document p {
    color: var(--text-secondary);
}

[data-theme="dark"] .privacy-document ul li {
    color: var(--text-secondary);
}

[data-theme="dark"] .privacy-document strong {
    color: var(--text-primary);
}

[data-theme="dark"] .privacy-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .privacy-footer p {
    color: var(--text-secondary);
}

[data-theme="dark"] .map-placeholder {
    background: var(--bg-secondary);
}

[data-theme="dark"] .map-placeholder svg rect {
    fill: var(--bg-tertiary);
}

[data-theme="dark"] .map-placeholder svg circle {
    fill: var(--accent-color);
}

[data-theme="dark"] .map-placeholder svg text {
    fill: var(--text-secondary);
}

[data-theme="dark"] .contact-info-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-info-item h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-info-item a {
    color: var(--accent-color);
}

[data-theme="dark"] .team-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .team-member {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .team-member h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .team-member .member-position {
    color: var(--accent-color);
}

[data-theme="dark"] .team-member .member-experience {
    color: var(--text-secondary);
}

[data-theme="dark"] .team-member .member-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .member-photo svg circle {
    fill: rgba(236, 72, 153, 0.1);
}

[data-theme="dark"] .contact-info-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-info-item h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-info-item a {
    color: var(--accent-color);
}

[data-theme="dark"] .contact-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .form-group select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-cta .btn-primary {
    background: white;
    color: #ec4899;
    border: 2px solid white;
}

[data-theme="dark"] .btn-large {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

[data-theme="dark"] .form-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .form-container h2 {
    color: var(--text-primary);
}

/* Messenger Links */
.messenger-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

.messenger-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.messenger-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.messenger-link.whatsapp {
    background: #25d366;
    color: white;
}

.messenger-link.telegram {
    background: #0088cc;
    color: white;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    border-top: 1px solid #334155;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-notice-text {
    flex: 1;
    color: #f8fafc;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice-text a {
    color: #ec4899;
    text-decoration: none;
}

.cookie-notice-text a:hover {
    color: #db2777;
    text-decoration: underline;
}

.cookie-notice-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #ec4899;
    color: white;
}

.cookie-btn-accept:hover {
    background: #db2777;
}

.cookie-btn-decline {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.cookie-btn-decline:hover {
    background: #334155;
    color: #f8fafc;
}

/* Dark theme for cookie notice */
[data-theme="dark"] .cookie-notice {
    background: #0f172a;
    border-top-color: #334155;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .cookie-notice-text {
    color: #f8fafc;
}

[data-theme="dark"] .cookie-notice-text a {
    color: #ec4899;
}

[data-theme="dark"] .cookie-notice-text a:hover {
    color: #db2777;
}

[data-theme="dark"] .cookie-btn-decline {
    border-color: #475569;
    color: #cbd5e1;
}

[data-theme="dark"] .cookie-btn-decline:hover {
    background: #334155;
    color: #f8fafc;
}

/* Responsive cookie notice */
@media (max-width: 768px) {
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-notice-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        display: flex !important;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin-bottom: 12px;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }
    
    .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(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .breadcrumbs {
        margin-top: 70px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
    
    .timeline-content {
        margin: 0;
        padding: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
