body {
    margin: 0;
    background: linear-gradient(to bottom, #e0f7fa, #b2ebf2); /* Нежный голубой градиент */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #004d40; /* Темно-бирюзовый текст */
}

.cloud-concept {
    position: relative;
    width: 80%;
    max-width: 700px;
    background-color: rgba(255, 255, 255, 0.8); /* Полупрозрачный белый фон */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.cloud-shape {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: -1; /* Чтобы форма облака была под контентом */
}

.cloud-shape::before,
.cloud-shape::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cloud-shape::before {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -40px;
}

.cloud-shape::after {
    width: 120px;
    height: 120px;
    top: -40px;
    right: -40px;
}

.content-area {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00796b; /* Более темный бирюзовый */
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #004d40;
}
