.form_c {
    max-width: 560px;
    margin: 0 auto ;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
}

/* Стилізація картинки */
.about-image img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    max-width: 100%;
}

/* Оверлей */
.about-overlay {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 80px;
    height: 80px;
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: -1;
    border-radius: 50%;
    transform: translateX(0);
    animation: rotateOverlay 1s infinite linear;
}

/* Адаптивність */
@media (max-width: 768px) {
    .about-overlay {
        width: 60px;
        height: 60px;
        top: 5%;
        right: 5%;
    }

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

/* Анімація */
@keyframes rotateOverlay {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}





.advantages-section {
    background-color: #f5f5f7; /* Світлий фон Apple */
    padding:0;
}

.advantages-section h2 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #1d1d1f; /* Глибокий чорний */
}

.advantages-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6e6e73; /* М'який сірий */
}

.advantages-section ul {
    padding-left: 0;
}

.advantages-section li {
    font-size: 1rem;
    font-weight: 500;
    color: #1d1d1f;
}

.advantages-section img {
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.advantages-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.circle-overlay {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(32, 201, 151, 0.1), rgba(32, 201, 151, 0.3));
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease;
}

.advantages-section img:hover ~ .circle-overlay {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .advantages-section h2 {
        font-size: 2rem;
    }

    .advantages-section p {
        font-size: 1rem;
    }

    .advantages-section img {
        margin: 0 auto;
        width: 90%;
    }

    .circle-overlay {
        width: 80px;
        height: 80px;
        top: -20px;
        right: -20px;
    }
}
.pricing-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #20c997;
}
.pricing-card.highlight {
    background: #f8f9fa;
    border: 2px solid #20c997;
}
.pricing-card ul {
    padding: 0;
    margin: 0;
}
.pricing-card li {
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
}
.price {
    font-size: 2rem;
    margin: 1rem 0;
}
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0066cc, #00cc99);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
}
.hero-section h1 {
    font-size: 4rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.hero-section a {
    transition: background 0.3s, transform 0.3s;
}
.hero-section a:hover {
    background: #0066cc;
    transform: translateY(-3px);
}