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

 @font-face {
    font-family: Circe-Bold; 
    src: url(fonts/Circe-Bold.ttf); 
   } 

 @font-face {
    font-family: Circe-Regular; 
    src: url(fonts/Circe-Regular.ttf); 
   } 

  @font-face {
    font-family: Circe-Light; 
    src: url(fonts/Circe-Light.ttf); 
   }  

body {
    background: #f4f7fb;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* адаптив */
@media (max-width: 768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        text-align: center;
    }
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0a1f44, #2563eb);
    color: white;
    padding: 100px 0;
}

.logo{
    width: 100%;
}

.logo img{
    width: 200px;
}

.hero h1 {
    font-size: 42px;
    line-height: 45px;
    margin-bottom: 15px;
    font-family: Circe-Bold; 
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    font-family: Circe-Regular; 
}

.btn {
    background: #ff3b3b;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    font-family: Circe-Regular; 
    margin-top: 20px;
}

.btn:hover {
    background: #d92d2d;
}

/* SECTION */
.section {
    padding: 40px 40px;
}

.section h2 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 36px;
    font-family: Circe-Bold;
}

.section p{
    font-family: Circe-Regular; 
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
    padding-top: 30px;
}

/* CARD */
.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-family: Circe-Regular; 
}

/* PRODUCT BLOCK */
.product {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.product img {
    width: 350px;
    border-radius: 12px;
}

.product-text {
    flex: 1;
}

.product-text h3{
    font-family: Circe-Bold; 
}

/* LIST */
ul {
    margin-top: 10px;
}

li {
    margin-bottom: 8px;
    font-family: Circe-Regular; 
}

/* CTA */
.cta {
    background: #2563eb;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2{
    font-family: Circe-Bold; 
}

.cta p{
    font-family: Circe-Regular; 
}

form {
    max-width: 500px;
    margin: 20px auto;
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    font-family: Circe-Light; 
}

footer {
    background: #0a1f44;
    color: white;
    text-align: center;
    padding: 25px;
    font-family: Circe-Regular; 
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.linkk{
    text-decoration: none;
    color: #fff;
}