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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #16213e;
    --highlight-color: #e94560;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.btn-accept:hover {
    background: #d13650;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(15,52,96,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-align: center;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
}

.cta-hero {
    padding: 18px 48px;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-hero:hover {
    background: #d13650;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.4);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.intro-minimal h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

.lead-text {
    font-size: 22px;
    color: var(--light-text);
    line-height: 1.8;
}

.visual-break {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.image-full {
    width: 100%;
    height: 100%;
}

.image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block {
    flex: 1;
    min-width: 300px;
}

.content-block h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.8;
}

.image-block {
    flex: 1;
    min-width: 300px;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.insight-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    padding: 16px 32px;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(233,69,96,0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-sticky:hover {
    background: #d13650;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,69,96,0.5);
}

.story-section {
    background: var(--accent-color);
    color: var(--white);
}

.story-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.testimonial-inline {
    background: var(--light-bg);
}

.testimonial-large {
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
    border-left: 4px solid var(--highlight-color);
    padding-left: 30px;
    margin: 0;
}

.testimonial-large cite {
    display: block;
    font-style: normal;
    font-size: 18px;
    margin-top: 20px;
    color: var(--light-text);
}

.visual-feature {
    padding: 0;
}

.feature-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.feature-image {
    flex: 1;
    min-width: 300px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    min-width: 300px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

.feature-content h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.feature-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--light-text);
}

.link-arrow {
    color: var(--highlight-color);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.section-title-left {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

.image-break-two {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.image-break-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-builder {
    background: var(--white);
}

.trust-builder h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-builder p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.testimonial-grid {
    background: var(--light-bg);
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 14px;
    color: var(--light-text);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--highlight-color);
    box-shadow: 0 10px 40px rgba(233,69,96,0.15);
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--light-text);
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px 28px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.urgency-block {
    background: var(--accent-color);
    color: var(--white);
}

.urgency-block h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.urgency-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d13650;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,69,96,0.4);
}

.final-cta {
    background: var(--light-bg);
    text-align: center;
}

.final-cta h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.btn-cta-large {
    padding: 18px 48px;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-large:hover {
    background: #d13650;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.4);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.page-hero {
    margin-top: 80px;
    padding: 100px 40px 60px;
    background: var(--light-bg);
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text {
    font-size: 20px;
    color: var(--light-text);
}

.content-section {
    background: var(--white);
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.values-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

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

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.btn-cta {
    padding: 16px 40px;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: #d13650;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.4);
}

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

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

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-text);
}

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

.feature-list li {
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-color);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 18px;
}

.price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 25px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-section {
    background: var(--light-bg);
}

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

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-text);
}

.contact-info-card a {
    color: var(--highlight-color);
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #d13650;
}

.contact-content {
    background: var(--white);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 40px 60px;
    background: var(--light-bg);
    text-align: center;
}

.thanks-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--light-text);
}

.thanks-content {
    background: var(--white);
}

.thanks-box {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

.service-confirmation {
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 6px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-cta {
    text-align: center;
}

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

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

.btn-secondary {
    padding: 14px 32px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.legal-page {
    margin-top: 80px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.updated-date {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-page a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: #d13650;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .container-offset {
        flex-direction: column;
        gap: 40px;
    }

    .feature-split {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .section-title-center,
    .section-title-left {
        font-size: 36px;
    }
}

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

    .container-narrow,
    .container-wide {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .intro-minimal h2 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .content-block h3 {
        font-size: 28px;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}