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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

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

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    color: #34495e;
}

.services-highlight {
    background-color: #ffffff;
    padding: 100px 0;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-left p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.additional-services {
    background-color: #2c3e50;
    padding: 80px 0;
    color: #ffffff;
}

.additional-services h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.additional-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.additional-item img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #34495e;
}

.additional-info {
    flex: 1;
}

.additional-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.additional-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.additional-info .price {
    color: #f39c12;
}

.process-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    color: #7f8c8d;
    font-size: 16px;
}

.form-section {
    background-color: #ecf0f1;
    padding: 90px 0;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
    font-size: 18px;
}

.order-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

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

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    color: #7f8c8d;
    font-size: 16px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-column p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 30px 0;
}

.footer-bottom p {
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro {
    background-color: #ffffff;
    padding: 90px 0;
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

.values-section {
    background-color: #ecf0f1;
    padding: 90px 0;
}

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

.value-image {
    flex: 1;
}

.value-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.value-content {
    flex: 1;
}

.value-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.value-item p {
    color: #7f8c8d;
    font-size: 16px;
}

.team-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-section p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 900px;
}

.approach-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.commitment-section {
    background-color: #2c3e50;
    padding: 90px 0;
    color: #ffffff;
}

.commitment-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

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

.commitment-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #34495e;
    padding: 30px;
    border-radius: 8px;
}

.commitment-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.commitment-card p {
    color: #bdc3c7;
    font-size: 16px;
}

.cta-about {
    background-color: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.services-detailed {
    background-color: #ffffff;
    padding: 90px 0;
}

.services-detailed h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-detailed > .container > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 800px;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    background-color: #ecf0f1;
}

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

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #34495e;
    border-bottom: 1px solid #ecf0f1;
}

.additional-services-page {
    background-color: #ecf0f1;
    padding: 90px 0;
}

.additional-services-page h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.additional-services-page > .container > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.addon-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.addon-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.addon-item.reverse {
    flex-direction: row-reverse;
}

.addon-content {
    flex: 1;
}

.addon-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.addon-content p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.addon-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.addon-image {
    flex: 0 0 50%;
}

.addon-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.included-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.included-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

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

.included-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
}

.included-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.included-item p {
    color: #7f8c8d;
    font-size: 15px;
}

.materials-section {
    background-color: #ecf0f1;
    padding: 90px 0;
}

.materials-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.materials-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.materials-allowed,
.materials-forbidden {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.materials-allowed h3 {
    color: #27ae60;
    font-size: 26px;
    margin-bottom: 20px;
}

.materials-forbidden h3 {
    color: #e74c3c;
    font-size: 26px;
    margin-bottom: 20px;
}

.materials-allowed ul,
.materials-forbidden ul {
    list-style: none;
}

.materials-allowed ul li,
.materials-forbidden ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
}

.materials-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 16px;
    font-style: italic;
}

.cta-services {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-services p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-main {
    background-color: #ffffff;
    padding: 90px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-value {
    font-size: 17px;
    color: #34495e;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-image {
    flex: 0 0 40%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.how-to-reach {
    background-color: #ecf0f1;
    padding: 90px 0;
}

.how-to-reach h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.reach-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reach-option {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.reach-option h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.reach-option p {
    color: #7f8c8d;
    font-size: 16px;
}

.reach-option a {
    color: #3498db;
    text-decoration: underline;
}

.response-time {
    background-color: #ffffff;
    padding: 90px 0;
}

.response-time h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.response-grid {
    display: flex;
    gap: 40px;
}

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

.response-time-value {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.response-item p {
    color: #7f8c8d;
    font-size: 16px;
}

.faq-contact {
    background-color: #ecf0f1;
    padding: 90px 0;
}

.faq-contact h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

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

.faq-item p {
    color: #7f8c8d;
    font-size: 16px;
}

.cta-contact {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-contact p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.confirmation-details {
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-text p {
    color: #7f8c8d;
    font-size: 16px;
}

.order-summary {
    background-color: #ffffff;
    border: 2px solid #3498db;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.order-summary h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.order-summary p {
    font-size: 18px;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-note {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 6px;
}

.thanks-note p {
    color: #856404;
    font-size: 15px;
    margin: 0;
}

.legal-page {
    background-color: #ffffff;
    padding: 90px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    color: #7f8c8d;
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    color: #34495e;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-page ul li {
    color: #34495e;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

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

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

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

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

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

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

    .values-layout {
        flex-direction: column;
    }

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

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

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

    .service-detail-image {
        flex: 1 1 auto;
    }

    .addon-item,
    .addon-item.reverse {
        flex-direction: column;
    }

    .addon-image {
        flex: 1 1 auto;
    }

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

    .materials-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-image {
        flex: 1 1 auto;
    }

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

    .additional-item {
        flex-direction: column;
    }

    .additional-item img {
        width: 100%;
    }
}
