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

:root {
    --primary-color: #2C5F2D;
    --primary-dark: #1F4320;
    --secondary-color: #8B7355;
    --accent-color: #A67C52;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-light: #F8F7F5;
    --bg-white: #FFFFFF;
    --border-color: #E0DED9;
    --error-color: #C93838;
    --success-color: #2C5F2D;
}

html {
    scroll-behavior: smooth;
}

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px 48px;
    background: var(--bg-light);
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
}

.btn-submit:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn-submit:disabled {
    background: var(--border-color);
    cursor: not-allowed;
}

.intro-section {
    padding: 100px 0;
}

.intro-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.intro-image {
    flex: 1;
    max-width: 500px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 36px;
    background: var(--bg-white);
    border-radius: 8px;
}

.value-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.services-overview {
    padding: 100px 0;
}

.services-overview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 6px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 14px;
    color: var(--text-medium);
}

.btn-select-service {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--primary-dark);
}

.testimonial-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.process-section {
    padding: 100px 0;
}

.process-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-image {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 36px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.form-section {
    padding: 100px 0;
}

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 36px;
}

.selected-service-display {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 28px;
}

.selected-service-display p {
    font-size: 16px;
    color: var(--text-dark);
}

#service-name-display {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.email-static {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie.accept:hover {
    background: var(--primary-dark);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-hero {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-intro {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h2,
.content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-left p,
.content-right p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.about-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-detailed {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-detailed h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.value-blocks {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.value-block {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.team-section {
    padding: 100px 0;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
}

.commitment-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.commitment-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.commitment-list {
    list-style-position: inside;
    margin: 20px 0;
}

.commitment-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
}

.projects-reference {
    padding: 100px 0;
}

.projects-reference h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.projects-reference p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.cta-simple {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-simple h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-simple p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-features {
    margin: 28px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-features ul {
    list-style-position: inside;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.service-pricing-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0;
}

.price-from {
    font-size: 14px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-services {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-services h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-services p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.contact-note {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.contact-visual {
    flex: 1;
}

.contact-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-approach {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-approach h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.thanks-hero {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-details {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 6px;
    text-align: left;
}

.next-steps {
    padding: 100px 0;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 32px;
}

.next-step {
    flex: 1;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.next-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.thanks-navigation {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.thanks-navigation h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-navigation p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: 400px;
    }

    .intro-grid,
    .split-content,
    .process-split,
    .contact-layout,
    .service-detail-layout {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card.reverse .service-detail-layout {
        flex-direction: column;
    }

    .team-stats {
        gap: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .ad-disclosure {
        position: static;
        transform: none;
        margin: 0 auto;
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        padding: 20px 24px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .hamburger {
        display: flex;
    }

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

    .lead {
        font-size: 18px;
    }

    h2 {
        font-size: 32px !important;
    }

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

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

    .team-stats {
        flex-direction: column;
        gap: 32px;
    }

    .approach-steps {
        gap: 32px;
    }

    .approach-step {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow,
    .container-fluid {
        padding: 0 16px;
    }

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

    .lead {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 15px;
    }

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