:root {
    --color-accent: #F72585;
    --color-secondary: #4CC9F0;
    --color-bg-start: #3A0CA3;
    --color-bg-end: #7209B7;
    --color-cta-start: #F72585;
    --color-cta-end: #4361EE;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    height: 100%;
    overflow-x: hidden;
}
body {
    background: linear-gradient(100deg, var(--color-bg-start), var(--color-bg-end));
}

.point {
    color: var(--color-accent);
}

.section {
    margin: 0 auto;
    padding: 80px;
    display: flex;
    flex-direction: column;
}
.section-header {
    max-width: 1600px;
    min-height: 100vh;
}

.header {
    padding: 30px 0;
}

.logo {
    height: 54px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-grow: 1;
}

.hero__content {
    flex: 1;
    min-width: 300px;
}

.hero__title {
    max-width: 600px;
    font-size: 72px;
    margin: 0px 0px 20px 0px;
    font-weight: 700;
}

.cta-button {
    background: linear-gradient(to right, var(--color-cta-start), var(--color-cta-end));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.8) 0%, rgba(67, 97, 238, 0) 70%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}
.cta-button:hover::before {
    width: 200%;
    height: 200%;
    opacity: 1;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
}

.hero__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}
.hero__image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(max(100vh, 100vw) * 0.55);
    height: calc(max(100vh, 100vw) * 0.55);
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}
.hero__image {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.info {
    text-align: center;
    padding: 5% 20px 20% 20px;
}
.info__title {
    font-size: 60px;
    font-weight: 700;
    max-width: 1150px;
    margin: 0 auto 40px auto;
}
.info__text {
    font-size: 22px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

.divider {
    height: 8px;
    background: linear-gradient(to right, var(--color-cta-start), var(--color-cta-end));
}

.contact {
    text-align: center;
    padding: 15% 0px 20% 0px;
    background-color: var(--color-bg-start);
}
.contact__title {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}
.contact__text {
    font-size: 22px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section {
        text-align: center;
    }
    .section-header {
        padding: 30px;
    }

    .hero {
        flex-direction: column;
    }
    .hero__title {
        font-size: 36px;
        max-width: 100%;
        margin: 0px 0px 30px 0px;
    }
    .hero__content {
        flex: none;
        width: 100%;
        margin: 40px 0px 70px 0px;
    }
    .hero__image-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }

    .info__title {
        font-size: 36px;
    }

    .divider {
        margin: 40px 0px 0px 0px ;
    }

    .contact__title {
        font-size: 36px;
    }
}
