body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fdfdff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 2rem;
}

.graphic-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}

.shape1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #2596be, #0d5f99);
    animation-delay: -4s;
}

.shape2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #a8d0e6, #8ab6d6);
    animation-direction: reverse;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 60% 40% 40% 60% / 60% 70% 30% 40%;
    }
}

.icon-check {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    color: #2ecc71;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 2rem;
}

.home-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: #555;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-button:hover {
    border-color: #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .graphic-container {
        width: 200px;
        height: 200px;
    }

    .shape1 {
        width: 140px;
        height: 140px;
    }

    .shape2 {
        width: 100px;
        height: 100px;
    }

    .icon-check {
        width: 70px;
        height: 70px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .graphic-container {
        width: 150px;
        height: 150px;
    }

    .shape1 {
        width: 110px;
        height: 110px;
    }

    .shape2 {
        width: 80px;
        height: 80px;
    }

    .icon-check {
        width: 60px;
        height: 60px;
    }

    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .home-button {
        padding: 10px 20px;
    }
}
