* {
    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: #2c2c2c;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f8f8f8;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 6rem;
    background-color: #fafafa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a1a1a;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    background-color: #f0f0f0;
    color: #2c2c2c;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #e0e0e0;
    opacity: 1;
}

.story-section {
    padding: 6rem 2rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.story-content {
    flex: 1;
    padding: 2rem;
}

.story-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.story-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
}

.insight-section {
    background-color: #f9f9f9;
    padding: 6rem 2rem;
}

.insight-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.insight-visual img {
    width: 100%;
    height: 100%;
}

.insight-content {
    flex: 1;
    padding: 2rem;
}

.insight-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.reference-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.reference-note a {
    color: #0066cc;
    text-decoration: underline;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    max-width: 450px;
    padding: 2rem;
}

.testimonial-card p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.8;
}

.benefits-section {
    padding: 6rem 2rem;
}

.benefits-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.benefits-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.benefits-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    padding: 2rem;
    border-left: 3px solid #2c2c2c;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.benefit-item a {
    color: #0066cc;
    text-decoration: underline;
}

.services-reveal {
    background-color: #f5f5f5;
    padding: 6rem 2rem;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.services-intro p {
    font-size: 1.15rem;
    color: #555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.select-service.selected {
    background-color: #0066cc;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.form-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.selected-service-display {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
}

.selected-service-display.active {
    border-color: #0066cc;
    background-color: #f0f8ff;
}

.selected-service-display p {
    margin: 0;
    font-size: 1rem;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-right {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.submit-btn {
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: #1a1a1a;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.ingredients-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.ingredients-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ingredients-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.ingredients-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.ingredient-block {
    flex: 1 1 calc(50% - 2rem);
    min-width: 320px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.ingredient-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ingredient-block ul {
    list-style: none;
}

.ingredient-block li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.ingredient-block li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #2c2c2c;
}

.ingredient-block a {
    color: #0066cc;
    text-decoration: underline;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-references a {
    color: #88ccff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #88ccff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #0052a3;
}

.cookie-btn.reject {
    background-color: #666666;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #555555;
}

.page-hero {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-split {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
    padding: 2rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.6;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.values-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.team-section {
    padding: 6rem 2rem;
}

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

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.team-intro p {
    font-size: 1.15rem;
    color: #555;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    border-left: 3px solid #2c2c2c;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.mission-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

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

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.mission-content p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-detail-content ul {
    margin: 1.5rem 0 2rem 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

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

.service-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 1.5rem;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-split {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f0f8ff;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.location-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.location-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.location-content ul {
    margin-left: 1.5rem;
}

.location-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-section {
    padding: 8rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.thanks-container > p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.05rem;
}

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

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next li {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

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

.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-container em {
    color: #666;
    font-size: 0.9rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .nav-links {
        gap: 1.5rem;
    }
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

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

    .benefits-split,
    .values-grid,
    .team-split {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-inline {
        flex-direction: column;
    }

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