* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #f5c6cb;
}

.header-main {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    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);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-visual-first {
    position: relative;
    min-height: 600px;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
}

.story-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 700px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.insight-reveal {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.insight-image {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.problem-amplification {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.amplify-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.amplify-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.amplify-card {
    flex: 1;
    background-color: #fff5f0;
    padding: 40px 30px;
    border-left: 4px solid var(--secondary-color);
}

.amplify-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.amplify-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.trust-building {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.trust-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.trust-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-container img {
    margin: 0 auto;
    border-radius: 8px;
    background-color: #95a5a6;
}

.testimonials-inline {
    padding: 80px 40px;
    background-color: var(--primary-color);
    color: white;
}

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

.testimonial-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-block {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.benefits-reveal {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.benefits-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefit-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-item img {
    width: 500px;
    height: 350px;
    background-color: #95a5a6;
    border-radius: 8px;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.services-pricing-reveal {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

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

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

.pricing-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.cta-select {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-select:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

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

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #d35400;
}

.final-cta {
    padding: 100px 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-btn-large:hover {
    background-color: #d35400;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef9e7;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7d6608;
}

.footer-main {
    background-color: #1a252f;
    color: white;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero {
    padding: 100px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1,
.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p,
.thanks-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.origin-story {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-visual {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.philosophy-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.team-section,
.values-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.team-container,
.values-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-container h2,
.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-container p,
.values-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-layout {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-block {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: left;
}

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

.value-block p {
    font-size: 1rem;
    line-height: 1.6;
}

.cta-about,
.contact-cta,
.thanks-additional {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about-content,
.contact-cta-content,
.additional-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-about-content h2,
.contact-cta-content h2,
.additional-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-about-content p,
.contact-cta-content p,
.additional-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #d35400;
}

.services-detailed {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.service-detail-card {
    background-color: var(--bg-light);
    padding: 50px 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    position: relative;
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.service-description {
    flex: 1.5;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-image {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.process-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.process-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.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: 700;
    margin: 0 auto 20px;
}

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

.process-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-info-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.location-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.location-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.location-info {
    display: flex;
    gap: 40px;
}

.transport-option {
    flex: 1;
    background-color: var(--bg-white);
    padding: 30px 25px;
    border-radius: 8px;
}

.transport-option h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.transport-option p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-hero {
    padding: 120px 40px 60px;
}

.thanks-details {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

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

.thanks-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    display: flex;
    gap: 20px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.thanks-service-info {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.service-info-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.service-info-container p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

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

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .insight-content,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .amplify-grid,
    .pricing-grid,
    .philosophy-grid,
    .values-layout,
    .process-steps,
    .next-steps,
    .location-info {
        flex-direction: column;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

    .benefit-item img {
        width: 100%;
    }

    .service-detail-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .story-section,
    .insight-reveal,
    .problem-amplification,
    .trust-building,
    .testimonials-inline,
    .benefits-reveal,
    .services-pricing-reveal,
    .form-section,
    .final-cta {
        padding: 60px 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
