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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #28a745;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Ad Notice Banner */
.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeaa7;
}

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section - Split Screen */
.hero-split {
    background-color: var(--bg-light);
    padding: 60px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-link {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover {
    color: #2980b9;
    border-color: #2980b9;
}

/* Split Container Sections */
.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.split-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.split-text ul,
.split-text ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.split-text ul li,
.split-text ol li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 10px;
}

.split-text ul li {
    list-style: disc;
}

.split-text ol li {
    list-style: decimal;
}

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* General Sections */
section {
    padding: 60px 20px;
}

.problem-section {
    background-color: var(--bg-white);
}

.insight-section {
    background-color: var(--bg-light);
}

.process-section {
    background-color: var(--bg-white);
}

.testimonials-section {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.benefits-section {
    background-color: var(--bg-white);
}

/* Services Preview */
.services-preview {
    background-color: var(--bg-white);
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 280px;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.service-card.premium {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fff9f9 100%);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card.premium .badge {
    background-color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
}

.select-service {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.select-service.premium {
    background-color: var(--accent-color);
}

.select-service.premium:hover {
    background-color: #c0392b;
}

/* Process List */
.process-list {
    margin-left: 0;
}

.process-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.process-list li::before {
    content: counter(list-item);
    position: absolute;
    left: 0;
    background-color: var(--secondary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Benefits List */
.benefits-list {
    margin-left: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 280px;
}

.testimonial p {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Form Section */
.form-section {
    background-color: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fffbf0;
    border: 1px solid #ffd966;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.disclaimer-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column p {
    color: #bbb;
    font-size: 0.95rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #555;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-accept:hover {
    background-color: #218838;
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-intro {
    background-color: var(--bg-white);
}

.values-section {
    background-color: var(--bg-light);
    text-align: center;
}

.values-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
}

.team-section {
    background-color: var(--bg-white);
}

.stats-section {
    background-color: var(--bg-light);
    text-align: center;
}

.stats-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.approach-section {
    background-color: var(--bg-white);
}

.mission-section {
    background-color: var(--bg-light);
}

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

.mission-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-about {
    background-color: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Services Page Styles */
.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 60px;
}

.service-detail.reverse {
    background-color: var(--bg-light);
    margin-left: -20px;
    margin-right: -20px;
    padding: 60px 20px;
}

.service-detail.premium-service {
    background: linear-gradient(135deg, #fff9f9 0%, #ffe8e8 100%);
    margin-left: -20px;
    margin-right: -20px;
    padding: 60px 20px;
}

.premium-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.savings {
    font-size: 0.9rem;
    color: var(--success-color);
    margin-top: 10px;
    font-weight: 600;
}

.price-box.premium {
    background: linear-gradient(135deg, #fff 0%, #ffe8e8 100%);
    border: 2px solid var(--accent-color);
}

.service-info {
    background-color: var(--bg-light);
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-grid h2 {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    min-width: 280px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-main {
    background-color: var(--bg-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-note p {
    color: var(--text-light);
}

.response-time {
    background-color: var(--bg-light);
    text-align: center;
}

.response-time h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.response-time p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.how-to-reach {
    background-color: var(--bg-white);
}

.location-info {
    background-color: var(--bg-light);
}

.location-info h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.location-details {
    max-width: 800px;
    margin: 0 auto;
}

.location-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.faq-contact {
    background-color: var(--bg-white);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
}

.availability-notice {
    background-color: #fffbf0;
    border: 1px solid #ffd966;
}

.availability-notice h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.availability-notice p {
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Thanks Page Styles */
.thanks-hero {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-info {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.next-steps {
    background-color: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
    min-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-light);
}

.thanks-info {
    background-color: var(--bg-light);
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-box h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-box ul li {
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.info-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.explore-more {
    background-color: var(--bg-white);
}

.explore-more h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.cta-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 250px;
}

.cta-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.cta-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-card p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    background-color: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.update-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-container p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-container ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 10px;
    list-style: disc;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid,
    .testimonials-grid,
    .values-grid,
    .stats-grid,
    .info-grid,
    .faq-grid,
    .steps-grid,
    .cta-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial,
    .value-card,
    .info-card,
    .faq-item,
    .step-item,
    .cta-card {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .form-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        padding: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    section {
        padding: 40px 15px;
    }
}