﻿

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #FFF5E6;
    color: #333;
    line-height: 1.8;
}

header {
    background: linear-gradient(to bottom, #B22222, #8B0000);
    color: #FFF;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

    header h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    header p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    color: #B22222;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

    h2::after {
        content: '';
        width: 50px;
        height: 3px;
        background-color: #FF1493;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    text-align: center;
}

.feature-card {
    background-color: #FFF;
    border: 2px solid #FF1493;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 2.5rem;
        color: #B22222;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        color: #0000FF;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

.pricing {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: #FFF;
    border: 3px solid #B22222;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

    .pricing-card h3 {
        color: #0000FF;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .pricing-card .label {
        position: absolute;
        top: 20px;
        right: -60px;
        background-color: #FF1493;
        color: #FFF;
        padding: 0.5rem 4rem;
        transform: rotate(45deg);
        font-size: 0.9rem;
        font-weight: bold;
    }

    .pricing-card ul {
        list-style: none;
        margin: 1rem 0;
    }

        .pricing-card ul li {
            margin: 0.5rem 0;
            font-size: 1rem;
        }

            .pricing-card ul li i {
                color: #B22222;
                margin-right: 0.5rem;
            }

.btn {
    display: inline-block;
    background-color: #FF1493;
    color: #FFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    margin: 1rem 0;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #B22222;
    }

.contact p {
    font-size: 1.1rem;
}

.contact a {
    color: #0000FF;
    text-decoration: none;
    font-weight: bold;
}

    .contact a:hover {
        text-decoration: underline;
    }

.contact i {
    color: #B22222;
    margin-right: 0.5rem;
}

footer {
    background-color: #B22222;
    color: #FFF;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .features, .pricing {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-card, .pricing-card {
        width: 45%;
    }
}

