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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.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: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.nav__logo h2 {
    color: #333;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.nav__logo span {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__link:hover,
.nav__link.active {
    color: #667eea;
}

.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-menu li {
    padding: 0;
}

.nav__dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.nav__dropdown-menu a:hover {
    background: #f8f9ff;
    color: #667eea;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero__title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.hero__card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.hero__card:hover {
    transform: rotate(0deg);
}

.hero__card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.hero__photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 18%;
    margin-bottom: 1rem;
    border: 4px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero__card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.hero__card p {
    color: #666;
    margin-bottom: 0;
}

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

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

.section__title {
    color: #333;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service__card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service__icon i {
    font-size: 1.8rem;
    color: white;
}

.service__title {
    color: #333;
    margin-bottom: 1rem;
}

.service__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service__link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service__link:hover {
    gap: 1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9ff;
}

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

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

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

.advantage__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage__icon i {
    color: white;
    font-size: 1.2rem;
}

.advantage__content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.advantage__content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}


.why-choose__stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat__label {
    color: #666;
    font-weight: 500;
}

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

.contact-cta__content h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-cta__info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-item i {
    color: white;
}

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

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

.footer__info h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer__info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer__contacts p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__contacts i {
    color: #667eea;
    width: 16px;
}

.footer__links h4,
.footer__services h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__links ul,
.footer__services ul {
    list-style: none;
}

.footer__links li,
.footer__services li {
    margin-bottom: 0.5rem;
}

.footer__links a,
.footer__services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover,
.footer__services a:hover {
    color: #667eea;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Mobile Navigation */
.nav__menu--active {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav__menu--active .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9ff;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .why-choose__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose__stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-cta__info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .advantages {
        grid-template-columns: 1fr;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service__card,
    .stat {
        padding: 1.5rem;
    }
    
    .why-choose__stats {
        flex-direction: column;
    }
}

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

.page-header h1 {
    color: #333;
    margin-bottom: 1rem;
}

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

.content-section {
    padding: 60px 0;
    background: white;
}

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

.content-main {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-sidebar {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e6ff;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-card a:hover {
    color: #764ba2;
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.contact-info .btn {
    background: white;
    color: #667eea;
}

.contact-info .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* About Page Styles */
.about-intro {
    margin-bottom: 3rem;
}

.about-intro .lead {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-photo-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-photo {
    width: 200px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

.about-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-section h3 i {
    color: #667eea;
}

.education-item,
.experience-timeline .timeline-item {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
}

.education-item h4,
.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.experience-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-date {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
    align-self: flex-start;
}

.timeline-content {
    flex: 1;
}

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

.spec-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.spec-item h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.spec-item ul {
    list-style: none;
}

.spec-item li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.spec-item li:before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
}

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

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

.approach-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.achievements {
    display: grid;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 8px;
}

.achievement-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

/* Contact Page Styles */
.contact-content {
    max-width: none;
}

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-card span {
    color: #666;
    font-size: 0.9rem;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

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

.consultation-info {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e6ff;
}

.consultation-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.consultation-list {
    list-style: none;
    margin-bottom: 2rem;
}

.consultation-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
}

.consultation-list i {
    color: #667eea;
}

.consultation-price {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.consultation-price h4 {
    color: #333;
    margin-bottom: 1rem;
}

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

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

.price-item span {
    color: #666;
}

.price-item strong {
    color: #667eea;
    font-weight: 600;
}

.price-note {
    background: #f0f8ff;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-note i {
    color: #667eea;
}



.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    margin-bottom: 2rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.map-placeholder {
    background: #f8f9ff;
    border: 2px dashed #667eea;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #667eea;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.directions h3 {
    margin-bottom: 1.5rem;
}

.direction-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.direction-item i {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.direction-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-section {
    background: #f8f9ff;
    padding: 60px 0;
}

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

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Service Pages Styles */
.service-intro .lead {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.services-list h3 {
    margin-bottom: 2rem;
    color: #333;
}

.service-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.service-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-category h4 i {
    color: #667eea;
}

.service-category ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

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

.service-category li:before {
    content: "✓";
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

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

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

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantage-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.advantage-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.case-examples {
    display: grid;
    gap: 2rem;
}

.case-item {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.case-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

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

.case-item strong {
    color: #667eea;
}

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

.timeline-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.timeline-item strong {
    color: #333;
}

.timeline-item span {
    color: #667eea;
    font-weight: 500;
}

/* Criminal Page Specific Styles */
.urgent-help {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.urgent-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.urgent-card i {
    font-size: 2rem;
    color: white;
}

.urgent-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.urgent-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.urgent-card strong {
    color: white;
    font-size: 1.2rem;
}

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

.right-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.right-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.right-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.right-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.criminal-process {
    display: grid;
    gap: 1.5rem;
}

.process-stage {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stage-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.stage-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.stage-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.stage-duration {
    background: #f0f8ff;
    color: #667eea;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.strategy-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.strategy-item h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.strategy-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.urgent-contact {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.urgent-contact h3 {
    color: white;
}

.urgent-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.urgent-info i {
    color: #ffeb3b;
}

.urgent-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.urgent-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.urgent-phone i {
    color: white;
}

.urgent-phone strong {
    color: white;
    font-size: 1.2rem;
}

.urgent-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.action-list {
    padding-left: 1rem;
}

.action-list li {
    color: #666;
    margin-bottom: 0.5rem;
}

.punishment-types {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.punishment-item strong {
    color: #333;
}

.punishment-item span {
    color: #667eea;
    font-size: 0.9rem;
}

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

.info-item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.info-item i {
    color: #667eea;
    margin-top: 0.2rem;
}

.info-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Family Page Specific Styles */
.approach-principles {
    display: grid;
    gap: 1.5rem;
}

.principle-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.principle-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.principle-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.principle-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip-item h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.tip-item ul {
    list-style: none;
}

.tip-item li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.tip-item li:before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    

    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .service-category ul {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid,
    .rights-grid,
    .strategy-items,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .urgent-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .specialization-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-items {
        grid-template-columns: 1fr;
    }
    
    .about-photo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-photo {
        width: 150px;
        height: 180px;
    }
}

/* Services Page Styles */
.services-overview {
    max-width: none;
}

.overview-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.overview-intro .lead {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.main-services {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.main-service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-title-block h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-title-block p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.service-content {
    padding: 2.5rem;
}

.service-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 2rem;
}

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

.service-highlights li:before {
    content: "✓";
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
}

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #666;
    font-size: 0.9rem;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.additional-services {
    background: #f8f9ff;
    padding: 80px 0;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.additional-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.additional-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.additional-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.additional-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 0;
    background: white;
}

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

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

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.pricing-card h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

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

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

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

.pricing-item span {
    color: #666;
    flex: 1;
}

.pricing-item strong {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-note {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note i {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-note p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.work-process {
    background: #f8f9ff;
    padding: 80px 0;
}

.work-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-timeline {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateX(10px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-icon i {
    color: white;
    font-size: 1.5rem;
}

.process-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive for Services Page */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-title-block h3 {
        font-size: 1.5rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-item:hover {
        transform: translateY(-5px);
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
    }
}
