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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.asymmetric-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    position: relative;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 40px 100px 40px;
    gap: 60px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding-left: 60px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8e8e8;
}

.insight-block-overlap {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    margin-top: -50px;
}

.insight-card {
    background-color: #0066cc;
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
}

.insight-number {
    font-size: 52px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.5;
}

.insight-text {
    flex: 1;
    padding-top: 20px;
}

.insight-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.problem-amplification {
    display: flex;
    padding: 80px 40px;
    gap: 70px;
    align-items: center;
    background-color: #fafafa;
}

.problem-image {
    flex: 0 0 45%;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.problem-content {
    flex: 1;
}

.problem-content h3 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.problem-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.problem-content a {
    color: #0066cc;
    text-decoration: none;
}

.problem-content a:hover {
    text-decoration: underline;
}

.services-asymmetric {
    padding: 100px 40px;
}

.services-header-offset {
    margin-left: 120px;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 20px 20px 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
    margin: 15px 20px;
}

.service-select-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: #0052a3;
}

.contact-form-offset {
    margin-top: 80px;
    padding: 60px 40px;
    background-color: #f8f9fa;
}

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

.form-container h3 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.service-display {
    padding: 12px 15px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    color: #666;
}

.service-display.selected {
    color: #0066cc;
    font-weight: 600;
    border-color: #0066cc;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-building {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.trust-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 15px;
    margin: 0;
    color: #666;
}

.trust-image {
    flex: 0 0 40%;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.references-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.references-list {
    max-width: 900px;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

.disclaimer-section h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    max-width: 1000px;
}

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #444;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-reject:hover {
    background-color: #d0d0d0;
}

.about-hero-offset {
    padding: 100px 40px 60px 100px;
    background-color: #f8f9fa;
}

.about-intro h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
}

.story-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 70px;
    align-items: center;
}

.story-image-left {
    flex: 0 0 45%;
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.values-overlap {
    padding: 100px 40px;
    background-color: #fafafa;
}

.values-overlap h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 70px;
    align-items: center;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.team-image {
    flex: 0 0 40%;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.mission-statement {
    padding: 100px 40px;
    background-color: #0066cc;
}

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

.mission-box h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
}

.mission-box p {
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
}

.services-hero {
    padding: 100px 40px 60px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.services-intro {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.offset-left {
    padding-left: 60px;
}

.service-detail-card.offset-right {
    padding-right: 60px;
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #e6f2ff;
    border-radius: 6px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #0052a3;
}

.services-cta-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-box p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 42px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #0052a3;
}

.contact-hero {
    padding: 100px 40px 60px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-intro {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content-asymmetric {
    display: flex;
    padding: 80px 40px;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-map-placeholder {
    flex: 0 0 45%;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.contact-additional {
    padding: 80px 40px;
    background-color: #fafafa;
}

.contact-additional h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 30px 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-step strong {
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
    color: #0066cc;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.contact-cta {
    padding: 80px 40px;
}

.thanks-hero {
    padding: 120px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.selected-service-info {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e6f2ff;
    border-left: 4px solid #0066cc;
    border-radius: 6px;
    font-size: 17px;
    color: #0066cc;
}

.thanks-next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.next-steps-list {
    padding-left: 25px;
}

.next-steps-list li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #e0e0e0;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content-left {
        padding-left: 0;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .hero-image-right {
        margin-top: 20px;
    }

    .insight-block-overlap {
        flex-direction: column;
        padding: 60px 20px;
    }

    .problem-amplification {
        flex-direction: column;
        padding: 60px 20px;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .contact-form-offset {
        padding: 40px 20px;
    }

    .trust-building {
        flex-direction: column;
        padding: 60px 20px;
    }

    .story-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
    }

    .team-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
    }

    .service-detail-card {
        flex-direction: column;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .service-detail-card.offset-right {
        flex-direction: column;
    }

    .contact-content-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
    }

    .process-steps {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}