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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ffc845;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-green: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

.btn-accept:hover {
    background: #27ae60;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.header-right {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-right a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.header-right a.active,
.header-right a:hover {
    color: var(--primary-color);
}

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

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

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

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

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

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-text-centered {
    padding: 100px 20px;
    text-align: center;
    background: var(--white);
}

.intro-text-centered h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-text-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-split-layout {
    padding: 60px 0;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

.service-details {
    flex: 1;
    padding: 60px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.link-arrow {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 0;
}

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

.value-proposition-wide {
    padding: 100px 20px;
    background: var(--light-bg);
}

.value-proposition-wide h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.testimonial-inline blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--secondary-color);
}

.process-split {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
}

.process-left {
    flex: 1;
}

.process-left h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.process-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.process-right {
    flex: 1;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

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

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

.form-section-split {
    display: flex;
    background: var(--light-bg);
    padding: 80px 0;
}

.form-intro {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.form-container {
    flex: 1;
    padding: 60px;
    background: var(--white);
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-elements {
    padding: 80px 20px;
    background: var(--white);
}

.trust-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.trust-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
}

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

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

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

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

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

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

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

.footer-col ul li a {
    color: #aaaaaa;
    font-size: 14px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #aaaaaa;
}

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

.hero-content-narrow h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story-split {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

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

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

.values-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
}

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

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

.team-intro {
    padding: 80px 20px;
    background: var(--white);
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.timeline-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 120px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -120px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.certifications {
    padding: 80px 20px;
    background: var(--white);
}

.certifications h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.cert-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.cert-item {
    padding: 16px 28px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 15px;
    color: var(--text-dark);
}

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

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

.service-detail-split {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

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

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

.service-content h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    color: var(--text-light);
}

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

.pricing-info {
    margin: 28px 0;
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    font-size: 18px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.comparison-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.comparison-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.comparison-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.comparison-item p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.recommended-service {
    font-weight: 600;
    color: var(--primary-color);
    margin: 16px 0;
}

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

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

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

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-split-layout {
    display: flex;
    padding: 80px 0;
}

.contact-info-side {
    flex: 1;
    padding: 60px;
    background: var(--light-bg);
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
}

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

.contact-form-side {
    flex: 1;
    padding: 60px;
    background: var(--white);
}

.contact-form-side h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-light);
}

.form-group-checkbox {
    margin-bottom: 24px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-group-checkbox label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

.map-placeholder {
    padding: 80px 20px;
    background: var(--white);
}

.map-placeholder h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.map-note {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-box {
    height: 400px;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text {
    font-size: 18px;
    color: var(--text-light);
}

.faq-contact {
    padding: 80px 20px;
    background: var(--light-bg);
}

.faq-contact h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-hero {
    padding: 100px 20px;
    text-align: center;
    background: var(--light-bg);
}

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

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

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-confirmation {
    margin-top: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next-steps {
    padding: 80px 20px;
    background: var(--white);
}

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

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.thanks-additional h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-additional p {
    font-size: 17px;
    margin-bottom: 32px;
    color: var(--text-light);
}

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

.thanks-link {
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
}

.thanks-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thanks-contact-info {
    padding: 60px 20px;
    background: var(--white);
    text-align: center;
}

.thanks-contact-info h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-email {
    margin-top: 20px;
}

.contact-email a {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.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;
    margin-bottom: 16px;
    color: var(--text-light);
}

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

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

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

.cookie-table thead {
    background: var(--light-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        gap: 20px;
    }

    .hero-split,
    .service-row,
    .service-row.reverse,
    .about-story-split,
    .process-split,
    .form-section-split,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-split-layout {
        flex-direction: column;
    }

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

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

    .service-details,
    .form-intro,
    .form-container,
    .contact-info-side,
    .contact-form-side {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 80px;
    }

    .timeline-year {
        left: -80px;
        font-size: 18px;
    }

    .value-grid,
    .cert-list,
    .trust-row {
        gap: 20px;
    }
}
