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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f9fa;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: white;
    padding: 15px 0;
    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;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-accept-all {
    background: #27ae60;
    color: white;
}

.btn-accept-all:hover {
    background: #229954;
}

.btn-necessary {
    background: #e67e22;
    color: white;
}

.btn-necessary:hover {
    background: #d35400;
}

.btn-custom {
    background: #95a5a6;
    color: white;
}

.btn-custom:hover {
    background: #7f8c8d;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
}

.nav-brand i {
    color: #27ae60;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #27ae60;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
}

.abstract-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    z-index: 1;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

/* Company Info */
.company-info {
    background: white;
}

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

.info-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.info-item i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.info-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

/* Services */
.services {
    background: #ecf0f1;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

/* Process */
.process {
    background: white;
}

.service-process {
    background: #f8f9fa;
    padding: 80px 0;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 60px;
}

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

.process-step {
    background: white;
    border-radius: 15px;
    padding: 50px 30px 30px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-content h3 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    border: 4px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step i {
    font-size: 2.5rem;
    color: #3a3a3a;
    margin: 20px 0;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.step p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Reviews */
.reviews {
    background: #ecf0f1;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.stars {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7f8c8d;
    font-weight: 500;
}

.reviewer i {
    font-size: 1.5rem;
    color: #bdc3c7;
}

/* Modern Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.contact-header h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 0;
    font-weight: 400;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-quick-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
    border-color: #27ae60;
}

.quick-contact-item i {
    font-size: 1.2rem;
    color: #27ae60;
    width: 20px;
    text-align: center;
}

.quick-contact-item span {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Modern Form Styles */
.stylish-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.input-wrapper {
    position: relative;
}

.input-wrapper.full-width {
    grid-column: 1 / -1;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #27ae60;
    background: white;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
    transform: translateY(-2px);
}

.input-wrapper input:valid,
.input-wrapper textarea:valid {
    border-color: #27ae60;
    background: white;
}

.input-wrapper label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}

.input-wrapper textarea + label {
    top: 25px;
    transform: none;
}

.input-wrapper input:focus + label,
.input-wrapper input:valid + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:valid + label {
    top: -8px;
    left: 16px;
    font-size: 0.85rem;
    color: #27ae60;
    background: white;
    padding: 0 8px;
    border-radius: 4px;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #bdc3c7;
    transition: all 0.3s ease;
    z-index: 3;
}

.input-wrapper textarea + label + i {
    top: 25px;
    transform: none;
}

.input-wrapper input:focus + label + i,
.input-wrapper input:valid + label + i,
.input-wrapper textarea:focus + label + i,
.input-wrapper textarea:valid + label + i {
    color: #27ae60;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 25px;
    line-height: 1.6;
}

.modern-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    min-height: 56px;
}

.modern-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
}

.modern-submit-btn:hover::before {
    left: 100%;
}

.modern-submit-btn:active {
    transform: translateY(0);
}

.modern-submit-btn .btn-text {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.modern-submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.modern-submit-btn:hover i {
    transform: translateX(3px);
}

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

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

.footer-section ul li a:hover {
    color: #27ae60;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-quick-info {
        gap: 20px;
    }
    
    .quick-contact-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .stylish-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 100px 0 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #229954;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 12px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-header i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.legal-header h1 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    font-size: 1rem;
}

.legal-content {
    background: white;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h2 i {
    color: #27ae60;
    font-size: 1.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h3 i {
    color: #e67e22;
    font-size: 1.1rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin: 20px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-section h4 i {
    color: #3498db;
    font-size: 1rem;
}

.legal-section p {
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    color: #555;
    margin-bottom: 8px;
}

.contact-box, .scope-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    margin: 25px 0;
}

.contact-box h3, .scope-box h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cookie-types, .cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cookie-type, .cookie-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.cookie-type.essential, .cookie-category.essential {
    border-left-color: #27ae60;
}

.cookie-type h4, .cookie-category h4 {
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-basis {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.basis-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

.basis-item strong {
    color: #2c2c2c;
    display: block;
    margin-bottom: 8px;
}

.cookie-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.explanation-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.explanation-item i {
    font-size: 2rem;
    color: #27ae60;
    margin-top: 5px;
}

.explanation-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #2c2c2c;
}

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

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

.category-header i {
    font-size: 1.8rem;
    color: #27ae60;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-header {
        padding: 40px 20px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-header i {
        font-size: 3rem;
    }
    
    .cookie-types, .cookie-categories, .cookie-explanation {
        grid-template-columns: 1fr;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .process-step {
        padding: 40px 20px 25px 20px;
    }
    
    .service-process h2 {
        font-size: 2rem;
    }
}

/* Minimalist Contact Page Styles */
.contact-page {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -0.02em;
}

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

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-card i {
    font-size: 1.8rem;
    color: #27ae60;
    min-width: 40px;
}

.info-card h3 {
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.info-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-card a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #219a52;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.form-container h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
}

.minimal-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    background: #fafbfc;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    background: white;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #27ae60;
    cursor: pointer;
}

.checkbox-group label {
    color: #666;
    cursor: pointer;
    user-select: none;
}

.checkbox-group a {
    color: #27ae60;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.action-btn.phone {
    background: #3498db;
    color: white;
}

.action-btn.phone:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.action-btn.whatsapp {
    background: #25d366;
    color: white;
}

.action-btn.whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.action-btn.email {
    background: #e67e22;
    color: white;
}

.action-btn.email:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .form-container h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .info-grid,
    .services-grid,
    .process-steps,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Article Specific Styles */
.article-header {
    padding: 120px 0 60px 0;
    background: #f8f9fa;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #229954;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 12px;
}

.article-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7f8c8d;
    font-size: 14px;
}

.category {
    background: #e8f5e8;
    color: white !important;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.date, .reading-time {
    font-weight: 500;
}

.article-header h1 {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.lead {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.article-content {
    padding: 80px 0;
    background: white;
}

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

.main-content {
    line-height: 1.8;
    color: #444;
}

.article-icon-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-icon-header i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.main-content h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin: 50px 0 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.main-content h2 i {
    color: #27ae60;
    font-size: 1.5rem;
}

.main-content h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.main-content h4 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.main-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.main-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f0);
    border-left: 4px solid #27ae60;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.highlight-box i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-right: 10px;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c5530;
}

/* Checklist */
.checklist {
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.checklist-item i {
    color: #27ae60;
    font-size: 1.1rem;
    min-width: 18px;
}

.checklist-item span {
    font-size: 1.05rem;
    color: #2c2c2c;
}

/* Process Overview */
.process-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.process-step {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #27ae60;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
    transform: translateY(-3px);
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 2.5rem;
    color: #27ae60;
}

.process-step h3 {
    color: #2c2c2c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.duration {
    display: inline-block;
    background: #e8f5e8;
    color: #27ae60;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Calculation Box */
.calculation-box {
    background: #f8f9fa;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.calculation-box h4 {
    color: #2c2c2c;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.calculation-box h5 {
    color: #2c2c2c;
    margin: 25px 0 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e8ecef;
    padding-bottom: 10px;
}

.example-calculation {
    margin-top: 20px;
}

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

.calc-item:last-child {
    border-bottom: none;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
}

.calc-item strong {
    color: #27ae60;
    font-size: 1.1rem;
}

/* Berlin Overview & District Cards */
.berlin-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.overview-stat {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.overview-stat:hover {
    border-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.overview-stat i {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.stat-content h3 {
    color: #2c2c2c;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-content p {
    color: #27ae60;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

/* District Cards */
.district-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    margin: 30px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.district-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.district-card.premium {
    border-color: #e67e22;
}

.district-header {
    background: linear-gradient(135deg, #f8f9fa, #e8ecef);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.district-card.premium .district-header {
    background: linear-gradient(135deg, #fdf6f0, #f4e6d7);
}

.district-header i {
    font-size: 2rem;
    color: #27ae60;
}

.district-card.premium .district-header i {
    color: #e67e22;
}

.district-header h3 {
    flex: 1;
    color: #2c2c2c;
    font-size: 1.5rem;
    margin: 0;
}

.price-tag {
    background: #27ae60;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.district-card.premium .price-tag {
    background: #e67e22;
}

.district-content {
    padding: 25px;
}

.highlights h4 {
    color: #2c2c2c;
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
}

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

.highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #444;
}

.highlights li i {
    color: #27ae60;
    width: 20px;
    text-align: center;
}

.district-metrics {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.metric i {
    color: #27ae60;
}

/* Market Indicators */
.market-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.indicator-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.indicator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.indicator-card.positive {
    border-color: #27ae60;
}

.indicator-card.neutral {
    border-color: #3498db;
}

.indicator-card.attention {
    border-color: #e67e22;
}

.indicator-card i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.indicator-card.positive i {
    color: #27ae60;
}

.indicator-card.neutral i {
    color: #3498db;
}

.indicator-card.attention i {
    color: #e67e22;
}

.indicator-card h3 {
    color: #2c2c2c;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.indicator-card .value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.indicator-card.positive .value {
    color: #27ae60;
}

.indicator-card.neutral .value {
    color: #3498db;
}

.indicator-card.attention .value {
    color: #e67e22;
}

.indicator-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Trend Analysis */
.trend-analysis {
    margin: 40px 0;
}

.trend-item {
    display: flex;
    gap: 25px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    transition: all 0.3s ease;
}

.trend-item:hover {
    border-color: #27ae60;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
}

.trend-icon {
    min-width: 60px;
    text-align: center;
}

.trend-icon i {
    font-size: 2.5rem;
    color: #27ae60;
}

.trend-content h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.trend-content p {
    margin-bottom: 15px;
}

.trend-content strong {
    color: #27ae60;
}

.trend-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.trend-content li {
    margin-bottom: 8px;
    color: #444;
}

.trend-forecast {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.forecast-label {
    font-weight: 600;
    color: #2c2c2c;
}

.forecast-value {
    color: #27ae60;
    font-weight: 600;
}

/* Responsive Article Styles */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-content h2 {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .berlin-overview,
    .market-indicators {
        grid-template-columns: 1fr;
    }
    
    .process-overview {
        grid-template-columns: 1fr;
    }
    
    .trend-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .district-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .district-metrics {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 100px 0 40px 0;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-content {
        padding: 60px 0;
    }
    
    .main-content {
        padding: 0 10px;
    }
    
    .highlight-box,
    .calculation-box {
        padding: 20px;
        margin: 20px 0;
    }
}

/* Stylish Blog Page */
.stylish-blog-header {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e8ecef;
}

.blog-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.blog-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

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

.blog-intro h1 {
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.blog-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 400;
}

/* Minimal Articles */
.minimal-articles {
    padding: 80px 0 120px 0;
    background: white;
}

.articles-container {
    max-width: 800px;
    margin: 0 auto;
}

.minimal-article {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.minimal-article:last-child {
    border-bottom: none;
}

.minimal-article:hover {
    transform: translateX(10px);
    background: #fafbfc;
    margin: 0 -20px;
    padding: 40px 20px;
    border-radius: 12px;
}

.article-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #e8ecef;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
    user-select: none;
}

.minimal-article:hover .article-number {
    color: #27ae60;
    transform: scale(1.1);
}

.article-info {
    flex: 1;
}

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

.meta .category {
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta .date {
    color: #95a5a6;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-info h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.article-info h2 a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-info h2 a:hover {
    color: #27ae60;
}

.article-info p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.read-time {
    background: #f8f9fa;
    color: #7f8c8d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Simple Article Styles */
.simple-article-header {
    padding: 120px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e8ecef;
}

.simple-article-content {
    padding: 60px 0 80px 0;
    background: white;
}

.simple-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.simple-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #7f8c8d;
}

.simple-breadcrumb a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.simple-breadcrumb a:hover {
    color: #229954;
}

.simple-breadcrumb i {
    margin: 0 8px;
    font-size: 12px;
}

.simple-article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.simple-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7f8c8d;
    font-size: 14px;
}

.simple-category {
    background: #e8f5e8;
    color: white !important;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.simple-article-header h1 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.simple-lead {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 0 auto;
    font-style: italic;
}

.simple-content-wrapper h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin: 50px 0 20px 0;
    font-weight: 600;
}

.simple-content-wrapper h3 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin: 40px 0 15px 0;
    font-weight: 600;
}

.simple-content-wrapper h4 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin: 30px 0 12px 0;
    font-weight: 600;
}

.simple-content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.simple-content-wrapper ul {
    margin: 20px 0;
    padding-left: 25px;
}

.simple-content-wrapper li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.simple-content-wrapper strong {
    font-weight: 600;
    color: #2c2c2c;
}

.simple-content-wrapper em {
    font-style: italic;
    color: #555;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-intro h1 {
        font-size: 2.5rem;
    }
    
    .minimal-article {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .minimal-article:hover {
        transform: none;
        margin: 0;
        padding: 40px 0;
    }
    
    .article-number {
        min-width: auto;
        font-size: 2rem;
    }
    
    .article-info h2 {
        font-size: 1.5rem;
    }
    
    .simple-article-header h1 {
        font-size: 2.2rem;
    }
    
    .simple-lead {
        font-size: 1.1rem;
    }
    
    .simple-content-wrapper {
        padding: 0 20px;
        font-size: 1.05rem;
    }
    
    .simple-content-wrapper h2 {
        font-size: 1.5rem;
    }
}

/* Stylish Services Page */
.stylish-services-header {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e8ecef;
}

.services-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.services-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

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

.services-intro h1 {
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.services-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 400;
}

/* Compact Services */
.compact-services {
    padding: 80px 0 120px 0;
    background: white;
}

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

.compact-service {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.compact-service:last-child {
    border-bottom: none;
}

.compact-service:hover {
    transform: translateX(10px);
    background: #fafbfc;
    margin: 0 -20px;
    padding: 40px 20px;
    border-radius: 12px;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #e8ecef;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
    user-select: none;
}

.compact-service:hover .service-number {
    color: #27ae60;
    transform: scale(1.1);
}

.service-info {
    flex: 1;
}

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

.service-meta i {
    font-size: 1.2rem;
    color: #27ae60;
}

.service-meta .service-category {
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 600;
    color: #2c2c2c;
}

.service-info p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-price-compact {
    background: #f8f9fa;
    color: #27ae60;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Simple Process */
.simple-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.simple-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 60px;
    font-weight: 600;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    text-align: center;
    transition: all 0.3s ease;
}

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

.process-step {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.process-item:hover .process-step {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.process-content h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Services Styles */
@media (max-width: 768px) {
    .services-intro h1 {
        font-size: 2.5rem;
    }
    
    .compact-service {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .compact-service:hover {
        transform: none;
        margin: 0;
        padding: 40px 0;
    }
    
    .service-number {
        min-width: auto;
        font-size: 2rem;
    }
    
    .service-info h2 {
        font-size: 1.5rem;
    }
    
    .process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-step {
        width: 50px;
        height: 50px;
    }
}