/* Global settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

body {
    width: 100%;
    justify-content: center;
    overflow-x: hidden;
    background-color: var(--Platonic);
    height: 100vh;
}

:root {
    --Platonic: #F5F5F5;
    --Napisy: #171940;
    --Niebieski: #3B82F6;
    --NiebieskiHover: #3a72cc;
    --CiemnyNeibieski: #171940;
    --JasnyNiebieski: #5E93F0;
    --Fioletowy: #7471D9;
    --FioletowyHover: #5f5cbd;
    --CiemnyFioletowy1: #3A2390;
    --CiemnyFioletowy2: #3E0C60;
    --SzaryTeskt: #303030;
    --JasnySzary: #A9A9A9;
    --JasnyBiały: #F8F8F8;
    --JasnoSzaryTekst: #5b5b5b;
}

.clear {
    clear: both;
}

/* Nav settings */

.mainnavigation {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    z-index: 999999;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.mainnavigation.scroll-nav {
    background-color: var(--Platonic);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(116, 113, 217, 0.2);
}

.navigation-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    /* max-width: 1920px; */
}

.mainimagesplatonic {
    margin-left: 22px;
    transition: transform 0.3s ease;
    width: 64px;
    max-width: 64px;
    height: 64px;
    max-height: 64px;
}

.mainimagesplatonic:hover {
    transform: rotate(-5deg) scale(1.05);
}

.mainplatonictitle {
    padding-left: 7px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    display: flex;
    align-items: center;
    color: var(--Napisy);
}

.navul {
    width: 100%;
    display: flex;
    list-style-type: none;
    justify-content: flex-end;
    align-items: center;
}

.linkmainnav {
    display: block;
    align-items: center;
    justify-content: center;
    margin-left: 36px;
    margin-right: 36px;
    text-decoration: none;
    color: var(--Napisy);
    position: relative;
    transition: color 0.3s ease;
}

.linkmainnav::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--Fioletowy), var(--FioletowyHover));
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-no-transition::after  {
    background: none !important;
    transition: none !important;
}

.linkmainnav:hover::after {
    width: 100%;
    left: 0;
}

.linkmainnav:hover {
    color: var(--FioletowyHover);
}

.boxmainnav {
    display: block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--Napisy);
}

.login-btn-span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    border-radius: 5px;
    border: 1px solid var(--CiemnyFioletowy2);
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--FioletowyHover) 100%);
    color: var(--Platonic);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-btn-span:hover {
    background: linear-gradient(135deg, var(--FioletowyHover) 0%, var(--Fioletowy) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(116, 113, 217, 0.4);
}

.hamburger {
    margin-right: 36px;
    cursor: pointer;
    border: none;
    display: none;
    background-color: transparent;
    z-index: 1001;
}

.hamburger-box {
    display: block;
    width: 40px;
    height: 24px;
    position: relative;
}

.hamburger-inner {
    position: absolute;
    width: 100%;
    height: 2.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
    background-color: var(--Napisy);
}

.hamburger-inner::before {
    position: absolute;
    width: 100%;
    height: 2.5px;
    top: -12px;
    left: 0;
    content: '';
    transition: transform .3s ease-in-out;
    background-color: var(--Napisy);
}

.hamburger-inner::after {
    position: absolute;
    width: 100%;
    height: 2.5px;
    top: 12px;
    left: 0;
    content: '';
    transition: transform .3s ease-in-out;
    background-color: var(--Napisy);
}

.hamburger--active .hamburger-inner {
    background-color: transparent;
}

.hamburger--active .hamburger-inner::before {
    transform: translateY(12px) rotate(45deg);
}

.hamburger--active .hamburger-inner::after {
    transform: translateY(-12px) rotate(-45deg);
}

/* Mobile menu - tło */
.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1000;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 45px;
    right: 56px;
    width: 0;
    height: 0;
    /* Solidne tło zamiast przeświecającego */
    background: var(--Platonic);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.2, 0.265, 1.2);
    z-index: -1;
}

.nav-menu--active {
    pointer-events: all;
}

.nav-menu--active::before {
    width: 250vmax;
    height: 250vmax;
    top: calc(45px - 125vmax);
    right: calc(56px - 125vmax);
}

/* Lista nawigacji */
.navigation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
    padding: 0;
    margin: 0;
}

.nav-menu--active .navigation-list {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

/* Zwykłe linki - minimalistyczny tekst */
.navigation-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

/* Animacja pojawiania się */
.nav-menu--active .navigation-item {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu--active .navigation-item:nth-child(1) { transition-delay: 0.25s; }
.nav-menu--active .navigation-item:nth-child(2) { transition-delay: 0.35s; }
.nav-menu--active .navigation-item:nth-child(3) { transition-delay: 0.45s; }
.nav-menu--active .navigation-item:nth-child(4) { transition-delay: 0.55s; }

/* Link tekstowy */
.nav-menu-link {
    display: block;
    padding: 14px 24px;
    text-decoration: none;
    color: var(--Napisy);
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

/* Podkreślenie przy hover */
.nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--Fioletowy), var(--FioletowyHover));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navigation-item:not(:last-child):hover .nav-menu-link::after {
    width: 60%;
}

.navigation-item:not(:last-child):hover .nav-menu-link {
    color: var(--Fioletowy);
}

/* Wyróżniony przycisk CTA - "Zaloguj się" */
.navigation-item:last-child {
    margin-top: 24px;
}

.navigation-item:last-child .nav-menu-link {
    background: linear-gradient(
        135deg,
        var(--Fioletowy) 0%,
        var(--CiemnyFioletowy1) 100%
    );
    color: var(--Platonic);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 48px;
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(116, 113, 217, 0.35),
        0 2px 8px rgba(58, 35, 144, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efekt świetlny na przycisku */
.navigation-item:last-child .nav-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.navigation-item:last-child:hover .nav-menu-link::before {
    left: 100%;
}

/* Usuń domyślne podkreślenie dla CTA */
.navigation-item:last-child .nav-menu-link::after {
    display: none;
}

.navigation-item:last-child:hover .nav-menu-link {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(116, 113, 217, 0.45),
        0 6px 16px rgba(58, 35, 144, 0.25);
    background: linear-gradient(
        135deg,
        var(--FioletowyHover) 0%,
        var(--Fioletowy) 100%
    );
    color: var(--Platonic);
}

/* Active state */
.navigation-item:last-child:active .nav-menu-link {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

/* Responsywność */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links {
        justify-content: flex-start;
        width: 100%;
        margin-top: 40px;
        gap: 30px;
    }

    .footer-brand {
        margin-right: 0;
    }
}

/* Responsive */
@media (max-width: 1300px) {
    .navul {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .mainplatonictitle {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .mainimagesplatonic {
        margin-left: 15px;
    }

    .mainplatonictitle {
        font-size: 26px;
        padding-left: 5px;
    }

    .hamburger {
        margin-right: 20px;
    }

    .nav-menu::before {
        right: 40px;
    }

    .nav-menu--active::before {
        right: calc(40px - 125vmax);
    }

    .nav-menu-link {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

/* Main section */

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* max-width: 1920px; */
    height: auto;
    margin: 0 auto;
    overflow-x: hidden;
}

.fixed-fix {
    width: 100%;
    height: 90px;
}

/* Animated Background - light version with math symbols */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f4f8 50%, #f5f0ff 100%);
    overflow: hidden;
}

/* Grid pattern - bardziej widoczna kratka */
.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

/* Kolorowe kształty w tle */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: float 30s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    top: 30%;
    right: -10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    bottom: -10%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    top: 50%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Math symbols container */
.math-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

/* Symbole matematyczne - bardziej widoczne i płynne */
.math-symbol {
    position: absolute;
    font-size: 70px;
    font-weight: 300;
    color: rgba(59, 130, 246, 0.12);
    animation: floatGentle 25s infinite ease-in-out;
    font-family: 'Times New Roman', serif;
    user-select: none;
    pointer-events: none;
}

/* Różne pozycje startowe i opóźnienia - bardziej widoczne kolory */
.math-symbol:nth-child(1) { 
    left: 5%; 
    top: 10%;
    animation-delay: 0s; 
    color: rgba(59, 130, 246, 0.15);
}
.math-symbol:nth-child(2) { 
    left: 15%; 
    top: 60%;
    animation-delay: 3s; 
    font-size: 55px;
    color: rgba(16, 185, 129, 0.13);
}
.math-symbol:nth-child(3) { 
    left: 25%; 
    top: 30%;
    animation-delay: 6s; 
    font-size: 80px;
    color: rgba(139, 92, 246, 0.12);
}
.math-symbol:nth-child(4) { 
    left: 35%; 
    top: 75%;
    animation-delay: 2s; 
    font-size: 65px;
    color: rgba(59, 130, 246, 0.14);
}
.math-symbol:nth-child(5) { 
    left: 50%; 
    top: 20%;
    animation-delay: 9s; 
    font-size: 58px;
    color: rgba(245, 158, 11, 0.13);
}
.math-symbol:nth-child(6) { 
    left: 60%; 
    top: 50%;
    animation-delay: 5s; 
    font-size: 75px;
    color: rgba(16, 185, 129, 0.14);
}
.math-symbol:nth-child(7) { 
    left: 75%; 
    top: 80%;
    animation-delay: 8s; 
    font-size: 60px;
    color: rgba(139, 92, 246, 0.13);
}
.math-symbol:nth-child(8) { 
    left: 85%; 
    top: 15%;
    animation-delay: 11s; 
    font-size: 68px;
    color: rgba(59, 130, 246, 0.12);
}
.math-symbol:nth-child(9) { 
    left: 12%; 
    top: 40%;
    animation-delay: 13s; 
    font-size: 62px;
    color: rgba(245, 158, 11, 0.14);
}
.math-symbol:nth-child(10) { 
    left: 68%; 
    top: 65%;
    animation-delay: 4s; 
    font-size: 72px;
    color: rgba(16, 185, 129, 0.12);
}

/* Nowa animacja - płynne pływanie w różnych kierunkach */
@keyframes floatGentle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    20% {
        transform: translate(50px, -80px) rotate(30deg);
    }
    40% {
        transform: translate(-30px, -120px) rotate(60deg);
    }
    60% {
        transform: translate(70px, -180px) rotate(90deg);
        opacity: 1;
    }
    80% {
        transform: translate(-20px, -240px) rotate(120deg);
    }
    95% {
        opacity: 0.5;
    }
    100% {
        transform: translate(30px, -300px) rotate(150deg);
        opacity: 0;
    }
}

/* First section */

.first-section {
    display: flex;
    flex-direction: row;
    height: auto;
    z-index: 2;
}

.first-section-information {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 60%;
    max-width: 1143px;
    margin-left: 74px;
    z-index: 2;
}

.first-section-heading {
    max-width: 550px;
    margin-top: 221px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 50px;
    color: var(--Napisy);
}

.first-section-heading span {
    background: var(--Fioletowy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.first-section-subtitle {
    margin-top: 8px;
    margin-bottom: 50px;
}

.first-subtitle-text {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--Napisy);
}

.first-section-links-box {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.first-section-link {
    text-decoration: none;
}

.first-section-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 60px;
    border: 1px solid var(--CiemnyFioletowy);
    border-radius: 5px;
    background-color: var(--Fioletowy);
    transition: all 0.2s ease;
}

.first-section-btn.second-first-link {
    border-color: var(--CiemnyNeibieski);
    background-color: var(--Niebieski);
}

.first-section-btn:hover {
    transform: scale(0.95);
    background-color: var(--FioletowyHover);
}

.first-section-btn.second-first-link:hover {
    background-color: var(--NiebieskiHover);
}

.first-section-link-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: var(--Platonic);
}

.first-section-image {
    width: 40%;
    max-width: 778px;
    margin-bottom: 70px;
}

.first-section-image img {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 50px 0 80px 9%;
    z-index: 2;
}

.first-circle {
    position: absolute;
    top: 80px;
    right: -90px;
    width: 976px;
    height: 976px;
    border-radius: 50%;
    background: linear-gradient(0deg, var(--CiemnyFioletowy1) 0%, var(--Niebieski) 100%); 
    z-index: 1;
}

@media screen and (max-width: 1700px) {
    .first-section-image img {
        margin: 50px 0 0 9%;
    }

    .first-circle {
        top: 120px;
        width: 750px;
        height: 750px;
    }
}

@media screen and (max-width: 1400px) {
    .first-section {
        margin-bottom: 100px;
    }

    .first-section-heading {
        margin-top: 170px;
        font-size: 40px;
    }

    .first-subtitle-text {
        font-size: 20px;
        line-height: 25px;
    }

    .first-section-image img {
        margin-top: 80px;
        width: 400px;
        height: 400px;
    }

    .first-circle {
        top: 120px;
        right: 0;
        width: 550px;
        height: 550px;
    }
}

@media screen and (max-width: 1170px) {
    .first-section-information {
        width: 50%;
    }

    .first-section-image {
        width: auto;
    }

    .first-section-image img {
        margin-left: 40px;
    }
    
    .first-circle {
        right: -20px;
    }
}

@media screen and (max-width: 1050px) {
    .first-section-information {
        align-items: center;
        justify-content: center;
        width: 100%;
        height: calc(100vh - 190px);
        margin: 0;
    }

    .first-section-heading-box {
        display: flex;
        width: 70%;
        justify-content: center;
    }

    .first-section-heading {
        margin: 0 0 15px 0;
        text-align: center;
    }

    .first-section-image,
    .first-circle {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .first-section-heading-box {
        width: 90%;
        max-width: 540px;
    }

    .first-section-heading {
        max-width: 100%;
        font-size: 36px;
        line-height: 40px;
    }

    .first-section-subtitle {
        padding: 0 30px;
    }

    .first-subtitle-text {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .first-section-heading-box,
    .first-section-subtitle {
        max-width: 432px;
    }
}

@media screen and (max-width: 450px) {
    .first-section-heading-box,
    .first-section-subtitle {
        max-width: 350px;
    }

    .first-section-btn {
        width: 130px;
        height: 50px;
        border-radius: 5px;
    }

    .first-section-link-text,
    .right-arrow-first {
        font-size: 16px;
    }
}


/* Second section */

.second-section {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: auto;
    /* max-width: 1920px; */
    margin-bottom: 110px;
    overflow: visible;
    z-index: 2;
}

.second-section-header {
    display: flex;
    margin-left: 81px;
    z-index: 2;
}

.second-complex-header-box {
    display: flex;
    flex-direction: column;
}

.second-section-title-text {
    font-size: 36px;
    font-weight: 600;
    color: var(--Napisy);
}

.second-subtitle-text {
    font-size: 24px;
    font-weight: 300;
    color: var(--Fioletowy);
}

/* Second section box */

.second-section-box {
    display: flex;
    width: 100%;
    margin-top: 100px;
    justify-content: center;
    z-index: 2;
}

.second-section-box-section {
    display: flex;
    width: 100%;
    margin: 0 100px;
    justify-content: space-between;
}

.second-section-one-box {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 25%;
    padding: 30px 0 100px;
    border: 4px solid var(--JasnySzary);
    border-radius: 25px;
    background-color: var(--JasnyBiały);
}

.second-section-box-rectangle {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(-45deg, var(--Fioletowy) 0%, var(--Niebieski) 100%); 
}

.second-rectangle-1 {
    top: 27px;
    right: 20px; 
}

.second-rectangle-2 {
    bottom: 27px;
    left: 20px; 
}

.second-section-box-title-box {
    display: flex;
    flex-direction: column;
    padding: 0 35px;
}

.second-box-title-text {
    font-size: 30px;
    font-weight: 500;
    color: var(--Napisy);
}

.second-box-subtitle-text {
    font-size: 20px;
    font-weight: 300;
    color: var(--Fioletowy);
}

.second-section-box-line {
    width: 95%;
    height: 5px;
    margin: 25px auto 9px;
    background-color: var(--SzaryTeskt);
}

.second-text-main-box {
    display: flex;
    flex-direction: column;
}

.second-text-box {
    display: flex;
    margin: 16px 0;
    padding: 0 35px;
}

.second-text-box-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-text-img {
    width: 39px;
    height: 39px;
}

.second-text-box-text {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.second-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--JasnoSzaryTekst);
}

.second-section-padding-line {
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.second-box-line {
    width: 100%;
    height: 3px;
    margin: 0 auto;
    background-color: #D1D1D1;
}

.second-circle-1,
.second-circle-2 {
    position: absolute;
    width: 676px;
    height: 676px;
    border-radius: 50%;
    background: linear-gradient(0deg, var(--Niebieski) 0%, var(--CiemnyFioletowy1) 100%);
}

.second-circle-1 {
    top: 283px;
    left: -289px;
}

.second-circle-2 {
    top: 510px;
    left: 700px;
}

@media (max-width: 1650px) {
    .second-section-box-section {
        width: 95%;
        justify-content: space-between;
        margin: 0;
        gap: 25px;
    }
    
    .second-section-one-box {
        min-width: 30%;
    }
}

@media (max-width: 1400px) {
    
    .second-section-one-box {
        min-width: 31%;
        padding: 28px 0 90px;
    }
    
    .second-box-title-text {
        font-size: 28px;
    }
    
    .second-box-subtitle-text {
        font-size: 19px;
    }
    
    .second-section-box-title-box {
        padding: 0 30px;
    }
    
    .second-text-box {
        padding: 0 30px;
    }

    .second-rectangle-2 {
        bottom: 20px;
    }
    
    .second-circle-2 {
        left: 600px;
    }
}

@media (max-width: 1250px) {

    .second-section-box-rectangle {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .second-section-one-box {
        min-width: 31.5%;
        padding: 26px 0 85px;
    }
    
    .second-box-title-text {
        font-size: 26px;
    }
    
    .second-box-subtitle-text {
        font-size: 18px;
    }
    
    .second-section-box-title-box {
        padding: 0 28px;
    }
    
    .second-text-box {
        padding: 0 28px;
        margin: 14px 0;
    }
    
    .second-text-img {
        width: 36px;
        height: 36px;
    }
    
    .second-text {
        font-size: 15px;
    }
    
    .second-circle-1 {
        width: 600px;
        height: 600px;
        left: -260px;
    }
    
    .second-circle-2 {
        width: 600px;
        height: 600px;
        left: 550px;
    }
}

@media (max-width: 1100px) {

    .second-rectangle-2 {
        bottom: 17px;
        left: 25px; 
    }

    .second-section-one-box {
        min-width: 32%;
        padding: 24px 0 80px;
    }
    
    .second-box-title-text {
        font-size: 24px;
    }
    
    .second-box-subtitle-text {
        font-size: 17px;
    }
    
    .second-section-box-title-box {
        padding: 0 26px;
    }
    
    .second-text-box {
        padding: 0 26px;
        margin: 13px 0;
    }
    
    .second-text-img {
        width: 34px;
        height: 34px;
    }
    
    .second-text {
        font-size: 14px;
    }
    
    .second-section-box-line {
        margin: 22px auto 8px;
        height: 4px;
    }
    
    .second-circle-1 {
        width: 550px;
        height: 550px;
        left: -240px;
    }
    
    .second-circle-2 {
        width: 550px;
        height: 550px;
        left: 500px;
    }
}

@media (max-width: 992px) {
    .second-section {
        margin-bottom: 60px;
    }
    
    .second-section-header {
        margin-left: 40px;
    }
    
    .second-section-title-text {
        font-size: 28px;
    }
    
    .second-subtitle-text {
        font-size: 20px;
    }
    
    .second-section-box {
        margin-top: 60px;
    }
    
    .second-section-box-section {
        flex-direction: column;
        margin: 0 30px;
        gap: 30px;
    }
    
    .second-section-one-box {
        min-width: 100%;
        padding: 25px 0 80px;
    }
    
    .second-circle-1,
    .second-circle-2 {
        width: 450px;
        height: 450px;
    }
    
    .second-circle-1 {
        top: 200px;
        left: -200px;
    }
    
    .second-circle-2 {
        top: 800px;
        left: auto;
        right: -200px;
    }
}

@media (max-width: 768px) {
    .second-section {
        margin-bottom: 50px;
    }
    
    .second-section-header {
        margin-left: 30px;
    }
    
    .second-section-title-text {
        font-size: 24px;
    }
    
    .second-subtitle-text {
        font-size: 18px;
    }
    
    .second-section-box {
        margin-top: 50px;
    }
    
    .second-section-box-section {
        margin: 0 20px;
        gap: 25px;
    }
    
    .second-section-one-box {
        padding: 20px 0 80px;
        border-width: 3px;
    }
    
    .second-rectangle-1 {
        top: 20px;
        right: 15px;
    }
    
    .second-rectangle-2 {
        left: 20px; 
    }
    
    .second-section-box-title-box {
        padding: 0 25px;
    }
    
    .second-box-title-text {
        font-size: 24px;
    }
    
    .second-box-subtitle-text {
        font-size: 16px;
    }
    
    .second-text-box {
        padding: 0 25px;
        margin: 14px 0;
    }
    
    .second-text-img {
        width: 35px;
        height: 35px;
    }
    
    .second-text {
        font-size: 15px;
    }
    
    .second-section-padding-line {
        padding: 0 25px;
    }
    
    .second-circle-1,
    .second-circle-2 {
        width: 350px;
        height: 350px;
    }
    
    .second-circle-1 {
        top: 150px;
        left: -150px;
    }
    
    .second-circle-2 {
        top: 700px;
        right: -150px;
    }
}

@media (max-width: 576px) {
    .second-section {
        margin-bottom: 40px;
    }
    
    .second-section-header {
        margin-left: 20px;
    }
    
    .second-section-title-text {
        font-size: 20px;
    }
    
    .second-subtitle-text {
        font-size: 16px;
    }
    
    .second-section-box {
        margin-top: 40px;
    }
    
    .second-section-box-section {
        margin: 0 15px;
        gap: 20px;
    }
    
    .second-section-one-box {
        padding: 18px 0 70px;
        border-width: 2px;
        border-radius: 20px;
    }
    
    .second-section-box-rectangle {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .second-rectangle-1 {
        top: 20px;
        right: 12px;
    }
    
    .second-rectangle-2 {
        bottom: 15px;
        left: 15px;
    }
    
    .second-section-box-title-box {
        padding: 0 20px;
    }
    
    .second-box-title-text {
        font-size: 22px;
    }
    
    .second-box-subtitle-text {
        font-size: 15px;
    }
    
    .second-section-box-line {
        height: 4px;
        margin: 20px auto 8px;
    }
    
    .second-text-box {
        padding: 0 20px;
        margin: 12px 0;
    }
    
    .second-text-img {
        width: 32px;
        height: 32px;
    }
    
    .second-text-box-text {
        margin-left: 10px;
    }
    
    .second-text {
        font-size: 14px;
    }
    
    .second-section-padding-line {
        padding: 0 20px;
    }
    
    .second-box-line {
        height: 2px;
    }
    
    .second-circle-1,
    .second-circle-2 {
        width: 280px;
        height: 280px;
    }
    
    .second-circle-1 {
        top: 120px;
        left: -120px;
    }
    
    .second-circle-2 {
        top: 600px;
        right: -120px;
    }
}

@media (max-width: 400px) {
    .second-section-header {
        margin-left: 15px;
    }
    
    .second-section-title-text {
        font-size: 18px;
    }
    
    .second-subtitle-text {
        font-size: 14px;
    }
    
    .second-section-box-section {
        margin: 0 10px;
    }
    
    .second-section-box-title-box {
        padding: 0 15px;
    }
    
    .second-box-title-text {
        font-size: 20px;
    }
    
    .second-text-box {
        padding: 0 15px;
    }
    
    .second-text {
        font-size: 13px;
    }
    
    .second-section-padding-line {
        padding: 0 15px;
    }
    
    .second-circle-1,
    .second-circle-2 {
        width: 220px;
        height: 220px;
    }
    
    .second-circle-1 {
        top: 100px;
        left: -100px;
    }
    
    .second-circle-2 {
        top: 550px;
        right: -100px;
    }
}