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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

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;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 2rem;
}

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

.nav-right a:hover,
.nav-right a.active {
    color: var(--secondary-color);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-large,
.btn-submit,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary,
.cta-large,
.btn-submit,
.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.cta-primary:hover,
.cta-large:hover,
.btn-submit:hover,
.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary,
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover,
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Value Split Section */
.value-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.visual-block {
    flex: 1;
    overflow: hidden;
}

.visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block {
    flex: 1;
    padding: 4rem 5%;
}

.content-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.link-arrow:after {
    content: ' →';
}

.link-arrow:hover {
    color: var(--secondary-color);
}

/* Stats Showcase */
.stats-showcase {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Services Grid Split */
.services-preview {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.cta-service {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-service.selected {
    background-color: var(--secondary-color);
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Split */
.process-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.process-steps {
    margin-top: 2rem;
}

.step {
    margin-bottom: 2rem;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    margin-right: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    margin-left: 66px;
}

/* CTA Split Section */
.cta-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background-color: var(--accent-color);
    color: white;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-action {
    flex: 0 0 auto;
    margin-left: 3rem;
}

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

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.form-benefits li:before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.form-wrapper {
    flex: 1;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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(--accent-color);
}

/* Portfolio Grid */
.portfolio-highlight {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.portfolio-highlight h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.portfolio-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    opacity: 0.9;
}

/* Footer Split */
.footer-split {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.page-hero-split .hero-content h1 {
    font-size: 3rem;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    margin: 2rem 0;
}

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

.service-detail-visual {
    flex: 1;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 4rem 5%;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
}

.service-includes li {
    padding: 0.7rem 0;
    color: var(--text-dark);
}

.service-includes li:before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Pricing Notes */
.pricing-notes {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

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

.notes-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.notes-container p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Process Timeline */
.process-timeline {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.process-timeline h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-split {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    flex: 1;
    text-align: center;
}

.timeline-number {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Contact Info Split */
.contact-info-split {
    display: flex;
    align-items: stretch;
    padding: 5rem 0;
}

.contact-block {
    flex: 1;
    padding: 4rem 5%;
}

.contact-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-block p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-detail p {
    margin-bottom: 0.5rem;
}

.note-small {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    position: relative;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

/* Story Split */
.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.story-split .content-block p {
    font-size: 1.15rem;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Team Split */
.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

/* Approach Section */
.approach-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.approach-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
}

.approach-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.approach-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Legal Page */
.legal-page {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.selected-service {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

.selected-service p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.step-item p {
    flex: 1;
    margin: 0;
    color: var(--text-dark);
}

.thanks-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .testimonial-split,
    .process-split,
    .service-detail-split,
    .contact-info-split,
    .story-split,
    .team-split {
        flex-direction: column;
    }

    .hero-visual,
    .visual-block,
    .testimonial-visual,
    .service-detail-visual,
    .contact-visual {
        min-height: 400px;
    }

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-action {
        margin-left: 0;
        margin-top: 2rem;
    }

    .form-container-split {
        flex-direction: column;
    }

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

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

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

    .portfolio-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-content h1,
    .page-hero-split .hero-content h1 {
        font-size: 2.2rem;
    }

    .stats-showcase {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .faq-item,
    .value-card,
    .approach-item {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .content-block,
    .service-detail-content,
    .contact-block {
        padding: 2rem 5%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-primary,
    .cta-secondary,
    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}
