* {
    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: #333;
    background-color: #f8f9fa;
}

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

.ad-disclosure {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #856404;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2c5282;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.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;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: #fff;
}

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

.btn-reject {
    background-color: #718096;
    color: #fff;
}

.btn-reject:hover {
    background-color: #4a5568;
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
}

.hero-image {
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,82,130,0.85), rgba(107,70,193,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.intro-card h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.story-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 15px;
}

.story-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.story-content a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
}

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

.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
}

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: #f7fafc;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.trust-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4299e1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 17px;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
}

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #48bb78;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #48bb78;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.service-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-body p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background-color: #e6fffa;
    color: #234e52;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #4299e1;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #3182ce;
}

.select-service {
    width: 100%;
}

.ingredients-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.ingredients-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.ingredient-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    border-top: 3px solid #4299e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ingredient-card h4 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 12px;
}

.ingredient-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
}

.btn-submit {
    width: 100%;
    background-color: #48bb78;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #38a169;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fffbeb;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.disclaimer-box h3 {
    font-size: 24px;
    color: #92400e;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 60px 0 30px;
}

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

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

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-references {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

.footer-references h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    color: #cbd5e0;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-references a {
    color: #90cdf4;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 25px;
}

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

.about-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e2e8f0;
}

.values-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 12px;
}

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

.approach-section {
    padding: 80px 0;
    background-color: #fff;
}

.approach-content h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-card {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.approach-card h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mission-box h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
}

.mission-box p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detail {
    padding: 60px 0;
}

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

.services-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-card {
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card.featured {
    border: 3px solid #48bb78;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.service-detail-header h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 15px;
}

.price-large {
    font-size: 48px;
    font-weight: 700;
    color: #2c5282;
}

.popular-badge {
    display: inline-block;
    background-color: #48bb78;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.service-detail-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e2e8f0;
}

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

.service-detail-text p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-detail-text h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-detail-text ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.service-detail-text li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.comparison-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.comparison-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
}

.comparison-table {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background-color: #2d3748;
    color: #fff;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-size: 15px;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background-color: #fff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 12px;
    color: #fff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large {
    background-color: #fff;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-content {
    padding: 80px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 50px;
}

.contact-info-card {
    flex: 1;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-label {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-value {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #e6fffa;
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    color: #234e52;
}

.contact-additional {
    flex: 1;
}

.contact-additional h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.map-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.map-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2d3748;
    margin-bottom: 40px;
}

.map-placeholder {
    background-color: #e2e8f0;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f7fafc;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 40px;
    color: #2d3748;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #e6fffa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-text {
    font-size: 16px;
    color: #234e52;
}

.thanks-next h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 30px;
    margin-top: 40px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #4299e1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 8px;
}

.step-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 42px;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: #718096;
    font-size: 15px;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 20px;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .about-grid,
    .service-detail-body,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-image {
        height: 250px;
    }

    .comparison-row {
        flex-wrap: wrap;
    }

    .comparison-cell {
        min-width: 150px;
    }
}
