.policy,
.success,
.contact-section {
  padding-block: 100px 60px;
  min-height: 94vh;
}

.policy__title,
.success__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

html {
  scroll-behavior: smooth;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.btn-primary {
    display: inline-block;
    background-color: #c4161c;
    color: white;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #a61217;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #c4161c;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu li a {
    font-weight: 500;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #c4161c;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background:  url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
}

.hero .container {
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    margin-bottom: 25px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f8f8f8;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #c4161c;
    color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #d42d2d;
    padding: 20px;
}

.service-image {
    margin-bottom: 15px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
}

.blog h2 {
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    background: url(../img/card-bg.webp);
    padding: 30px;
    position: relative;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #c4161c;
}

/* Method Section */
.method {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.method .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.method-content ol {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 20px;
}

.method-content li {
    margin-bottom: 20px;
}

.method-content h4 {
    margin-bottom: 5px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2, .contact p {
    text-align: center;
}

.contact p {
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn-primary {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
}

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

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c4161c;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cookie {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-cookie.accept {
    background-color: #c4161c;
    color: white;
}

.btn-cookie.refuse {
    background-color: #ddd;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about .container, 
    .method .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu li {
        margin: 10px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .features .container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
}