@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Gilroy Regular */
@font-face {
    font-family: 'Gilroy';
    src: url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Regular.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Gilroy Medium */
@font-face {
    font-family: 'Gilroy';
    src: url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Medium.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Gilroy Bold */
@font-face {
    font-family: 'Gilroy';
    src: url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Bold.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Gilroy Extrabold */
@font-face {
    font-family: 'Gilroy';
    src: url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.eot');
    src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --primary-bg-color: #73B1E2;
    --secondary-bg-color: #FFFFFF;
    --main-text-color: #212121;
    --subtle-text-color: rgba(25, 25, 25, 0.8);
    --font-primary: "Montserrat", sans-serif;
    --font-size-heading: clamp(28px, 5vw, 36px); /* РђРґР°РїС‚РёСЂРѕРІР°РЅРѕ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… СѓСЃС‚СЂРѕР№СЃС‚РІ */
    --font-size-paragraph-large: clamp(12px, 3.5vw, 16px); /* РђРґР°РїС‚РёСЂРѕРІР°РЅРѕ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… СѓСЃС‚СЂРѕР№СЃС‚РІ */
    --font-size-paragraph-small: clamp(10px, 3vw, 14px); /* РђРґР°РїС‚РёСЂРѕРІР°РЅРѕ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… СѓСЃС‚СЂРѕР№СЃС‚РІ */
    --border-radius-large: 40px;

    /* Р—Р°РјРµС‚РЅС‹Рµ С‚РµРЅРё */
    --block-shadow-default: 0 0 4px rgba(0, 0, 0, 0.1);

    --card-bg-color: #ffffff;
}

/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary) !important;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--secondary-bg-color);
    padding: 20px 0;
}

nav {
    text-align: center;
}

nav a {
    color: var(--main-text-color);
    text-decoration: none;
    margin: 0 10px;
}

/* Main Section */
section {

    padding: 20px 2vw;
}

.intro-section {
    font-family: 'Gilroy', sans-serif !important;
    display: flex;
    flex-direction: column;
    padding: 45px;
    margin: 20px 0;
    background: linear-gradient(135deg, 
        #7FC9FF 0%, 
        #5BB0FF 25%, 
        #319CFF 50%, 
        #5BB0FF 75%, 
        #7FC9FF 100%);
    border-radius: var(--border-radius-large);
    color: var(--secondary-bg-color);
    position: relative;
    box-shadow: 0 10px 30px rgba(115, 177, 226, 0.15);
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.intro-section-img {
    position: absolute;
    bottom: -20px;
    right: 0px;
    max-width: 60%;
}

.section-title {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 800; /* Extrabold */
    font-size: 70px;
    margin-bottom: -20px;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

.section-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-text p {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 500; /* Medium */
    font-size: var(--font-size-paragraph-large);
    margin: 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

/* Buttons */
.buttons {
    display: flex;
    margin-top: 15px;
}

.button-primary {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 500; /* Medium */
    font-size: 16px;
    padding: 15px 30px;
    background-color: white;
    display: inline-block;
    text-align: center;
    border-radius: 30px;
    color: #000000;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 15px rgba(115, 177, 226, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 177, 226, 0.4);
    color: #5BB0FF;
}

.button-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(115, 177, 226, 0.3);
}

/* Advantages Section */
.advantages-section {
    background-color: var(--secondary-bg-color);
   
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* РђРґР°РїС‚РёРІРЅР°СЏ СЃРµС‚РєР° */
    gap: 50px;
    justify-items: center;
}

.card {
    width: 100%;
    max-width: 280px;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
    text-align: center;
    border: 1px solid black;
}

.card-title {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 700; /* Bold */
    font-size: 25px;
    margin-bottom: 10px;
}

.card-text {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 400; /* Regular */
    font-size: 18px;
    color: #515151;
    margin: 10px 0;
}

.card-icon {
    font-size: 48px;
    margin-top: 25px;
    color: #5BB0FF;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #7FC9FF 0%, #5BB0FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 8px rgba(91, 176, 255, 0.2));
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
    transform: translateZ(30px) scale(1.1);
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(91, 176, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    transform: scale(0.8);
}

.card:hover .card-icon::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Safety Section */
.safety-section {
    background: linear-gradient(135deg, 
        #7FC9FF 0%, 
        #5BB0FF 25%, 
        #319CFF 50%, 
        #5BB0FF 75%, 
        #7FC9FF 100%);
    padding: 30px 30px;
    border-radius: var(--border-radius-large);
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(115, 177, 226, 0.2);
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.safety-content {
    position: relative;
    z-index: 2;
    max-width: 800px;

}

.safety-content h2 {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.safety-content p {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.safety-content strong {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 600;
    font-size: 20px;
    display: block;
    margin: 30px 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.safety-content .buttons {
    margin-top: 30px;
}

.safety-content .button-primary {
    background: white;
    color: #000000;
    font-weight: 500;
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.safety-content .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.safety-content .button-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #767676;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 24px;
    color: var(--secondary-bg-color);
    margin-bottom: 20px;
}

.content-info {
    margin-bottom: 25px;
}

.content-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    margin: 5px 0;
}

.content-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.content-links a {
    color: var(--secondary-bg-color);
    text-decoration: none;
    padding: 12px 25px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.content-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .safety-section {
        padding: 35px 25px;
        margin: 30px 0;
    }

    .safety-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .safety-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .safety-content strong {
        font-size: 18px;
        margin: 25px 0;
    }

    .safety-content .button-primary {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 50px;
    }
    .section-text p{
        font-size: 18px;
    }
    .safety-section {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .safety-content h2 {
        font-size: 24px;
    }

    .safety-content p {
        font-size: 15px;
    }

    .safety-content strong {
        font-size: 16px;
        margin: 20px 0;
    }
    .footer-content{
        margin: 0 auto;
        max-width: 80%;
    }
}