/* style.css - обновленная версия */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 3% auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    max-height: 90vh;
    position: relative;
    animation: slideIn 0.4s ease;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: sticky;
    top: 0;
    z-index: 1;
}

.close:hover {
    color: #c0392b;
    transform: rotate(90deg);
}

/* Скроллбар для модальных окон */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(192, 57, 43, 0.4);
    z-index: 10001;
    display: none;
    animation: slideIn 0.5s ease;
    font-weight: 500;
}

.notification.success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
}

/* Главный баннер с фоновым изображением */
.main-banner {
    background-image: url('Image_path/fon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.75) 0%, rgba(52, 73, 94, 0.75) 50%, rgba(192, 57, 43, 0.6) 100%);
    z-index: 0;
}

.main-banner .container {
    position: relative;
    z-index: 1;
}

.main-banner h2 {
    font-size: 58px;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    line-height: 1.2;
}

.main-banner p {
    font-size: 26px;
    margin-bottom: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Улучшенная кнопка CTA */
.cta-button {
    display: inline-block;
    background-color: #c0392b;
    color: white;
    padding: 22px 55px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.5);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 45px rgba(192, 57, 43, 0.7);
    background-color: #e74c3c;
}

/* Секции */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* О компании */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

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

.about-features {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.about-features--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
}

.about-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin: 30px 0;
    grid-auto-rows: 1fr;
}

.about-product-card {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-product-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #eef1f5;
}

.about-product-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-product-card h4 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #c0392b;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.about-product-card p {
    margin: 0;
    font-size: 15px;
    color: #586577;
    line-height: 1.5;
}

.feature-item {
    background-color: white;
    padding: 34px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.2);
    border-color: #c0392b;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 14px;
    border: 1px dashed #c7cdd6;
    color: #8a94a3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.feature-icon img {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

.feature-item h4 {
    color: #c0392b;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-item p {
    margin: 0;
    font-size: 15px;
    color: #586577;
    line-height: 1.5;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-circle {
    width: 350px;
    height: 350px;
    background: #eef2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.4);
    animation: float 3s ease-in-out infinite;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.office-caption {
    margin-top: 16px;
    font-size: 16px;
    color: #556070;
    text-align: center;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Страница "О компании" */
.about-full-content {
    padding: 40px 0 80px;
}

.about-section-full {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.about-section-full h2 {
    color: #c0392b;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-section-full p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-history-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.about-history-text {
    min-width: 0;
}

.about-delivery {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 16px;
    background: #f1f3f6;
    color: #2c3e50;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    font-size: 18px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.advantages-list li:hover {
    background: #ecf0f1;
    transform: translateX(10px);
}

.video-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 80px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-size: 20px;
}

.about-delivery-box {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 12px 22px;
    border: 2px solid #c0392b;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #c0392b;
    background: #fff;
    text-align: center;
}

.about-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    justify-items: center;
}

.about-video-item {
    width: 100%;
    max-width: 240px;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.about-representative {
    display: flex;
    justify-content: flex-end;
}

.representative-card {
    max-width: 320px;
    border: 1px solid #e6e8ec;
    border-radius: 18px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.representative-photo {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
}

.representative-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.representative-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.representative-name {
    font-weight: 600;
    color: #445062;
    margin-bottom: 10px;
}

.representative-contact {
    margin: 6px 0;
    font-size: 14px;
    color: #586577;
}

.about-video-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.about-video-wrapper {
    margin: 18px auto 0;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    max-width: 420px;
}

.about-video {
    display: block;
    width: 100%;
    height: auto;
}

.about-video-side {
    display: flex;
    justify-content: flex-start;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.document-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.document-item:hover {
    background: #ecf0f1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.document-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.document-meta {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e9eef4;
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Страница "Ремонт и установка" */
.service-hero-text {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
    max-width: 860px;
}

.service-overview {
    padding: 20px 0 50px;
}

.service-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.service-intro--full {
    grid-template-columns: 1fr;
}

.service-intro h2 {
    color: #c0392b;
    font-size: 32px;
    margin-bottom: 15px;
}

.service-intro p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    background: #f8f9fa;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-callout {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.service-callout h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-callout p {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.service-whatsapp {
    display: inline-block;
    background: white;
    color: #2980b9;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.service-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-steps {
    margin-top: 20px;
}

.service-steps h2 {
    color: #2c3e50;
    font-size: 30px;
    margin-bottom: 15px;
}

.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.service-step {
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #34495e;
}

.service-media {
    padding-bottom: 80px;
}

.service-media h2 {
    font-size: 30px;
    color: #2c3e50;
    margin: 30px 0 20px;
}

.service-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-video-card {
    background: white;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-video-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 45px 20px;
    border-radius: 14px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-video-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #c0392b;
}

.service-video-card p {
    font-size: 15px;
    color: #666;
}

.service-photo-heading {
    font-size: 30px;
    color: #2c3e50;
    margin: 30px 0 18px;
}

.service-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    grid-auto-rows: 260px;
    grid-auto-flow: row;
    margin: 18px 0 32px;
}

.service-photo-lead {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 32px;
}

.service-photo-grid--lead {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    grid-auto-rows: 320px;
}

.service-photo-grid--secondary {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-auto-rows: 300px;
}

.service-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #e9edf0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    height: 100%;
}

.service-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-photo.is-wide {
    grid-column: span 2;
}

.service-photo.is-tall {
    grid-row: span 2;
}

.service-photo.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

/* Избранное */
.favorites-list-container {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.favorites-list-container::-webkit-scrollbar {
    width: 8px;
}

.favorites-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.favorites-list-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 10px;
}

.favorite-item {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

.favorite-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.favorite-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.favorite-item-image .product-placeholder {
    font-size: 48px;
    color: white;
}

.favorite-item-info {
    flex: 1;
}

.favorite-item-info h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 18px;
}

.favorite-item-power {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 8px;
}

.favorite-item-price {
    color: #c0392b;
    font-size: 22px;
    font-weight: bold;
}

.remove-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.remove-favorite:hover {
    background-color: #c0392b;
    transform: rotate(90deg);
}

.order-info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 25px;
    border-radius: 15px;
    color: white;
    text-align: center;
    margin-top: 20px;
}

.order-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-number {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-line {
        width: 70px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text p {
        font-size: 16px;
    }
    
    .main-banner {
        padding: 100px 0;
        background-attachment: scroll;
        min-height: 420px;
    }


    .hero-company {
        font-size: 14px;
        padding: 5px 14px;
    }
    
    .main-banner h2 {
        font-size: 36px;
    }
    
    .main-banner p {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-products {
        grid-template-columns: 1fr;
    }

    .about-video-grid {
        grid-template-columns: 1fr;
    }

    .about-representative {
        justify-content: center;
    }

    .about-history-grid {
        grid-template-columns: 1fr;
    }

    .about-video-item {
        max-width: 320px;
    }

    .representative-card {
        max-width: 100%;
    }

    .feature-item {
        padding: 22px;
    }

    .learn-more-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .about-section-full {
        padding: 26px;
    }

    .about-section-full h2 {
        font-size: 26px;
    }

    .video-placeholder {
        padding: 50px 25px;
        font-size: 18px;
    }

    .service-intro {
        grid-template-columns: 1fr;
    }

    .service-video-grid {
        grid-template-columns: 1fr;
    }

    .service-photo-lead {
        grid-template-columns: 1fr;
    }

    .service-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .service-photo-grid--lead {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .service-photo-grid--secondary {
        grid-auto-rows: 270px;
    }

    .service-photo-heading {
        font-size: 26px;
    }

    .service-photo-caption {
        font-size: 13px;
    }

    .about-video-block {
        grid-template-columns: 1fr;
    }

    .service-photo.is-wide,
    .service-photo.is-tall,
    .service-photo.is-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .image-circle {
        width: 250px;
        height: 250px;
        font-size: 80px;
    }
    
    .favorite-item {
        flex-direction: column;
        text-align: center;
    }
    
    .favorite-item-image {
        width: 150px;
        height: 150px;
    }

    .modal-content {
        width: 92%;
        margin: 8% auto;
        padding: 22px;
    }

    .notification {
        left: 16px;
        right: 16px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .main-banner {
        padding: 80px 0;
        min-height: 360px;
    }


    .hero-company {
        font-size: 13px;
        letter-spacing: 0.6px;
    }

    .main-banner h2 {
        font-size: 30px;
    }

    .main-banner p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .image-circle {
        width: 200px;
        height: 200px;
        font-size: 70px;
    }

    .service-photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 210px;
    }

    .service-photo-grid--lead,
    .service-photo-grid--secondary {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .service-photo-heading {
        font-size: 24px;
    }

    .contact-number {
        font-size: 22px;
    }

    .favorite-item-image {
        width: 130px;
        height: 130px;
    }
}
