 

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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 2.5rem; }
h3 { font-size: 1.5rem; color: #556B2F; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #556B2F;
    transition: color 0.3s ease;
}

a:hover {
    color: #343a40;
}

ul {
    list-style: none;
}

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

.bg-light {
    background-color: #ffffff;
}

.section-common {
    padding: 60px 0;
}
 
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #556B2F;
    color: #ffffff;
    border: 2px solid #556B2F;
}

.btn-primary:hover {
    background-color: #4a5d28;
    border-color: #4a5d28;
    color: #ffffff;
}

.btn-secondary {
    background-color: #343a40;
    color: #ffffff;
    border: 2px solid #343a40;
}

.btn-secondary:hover {
    background-color: #23272b;
    border-color: #23272b;
    color: #ffffff;
}

.btn-link {
    font-weight: 600;
    color: #556B2F;
}
.btn-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.btn-link:hover i {
    transform: translateX(5px);
}

 
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #343a40;
}
.logo:hover {
    color: #556B2F;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    font-weight: 600;
    color: #343a40;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #556B2F;
    border-bottom-color: #556B2F;
}
 
.hero {
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    background: url('../img/hero.png') no-repeat center center/cover;
 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 40, 40, 0.7); 
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

 
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-text {
    flex: 2;
}
.about-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}
.feature-item .fas {
    font-size: 1.8rem;
    color: #556B2F;
}

 
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
}

.card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.card .fas {
    font-size: 2.5rem;
    color: #556B2F;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}
 
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.step {
    position: relative;
}
.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #556B2F;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    border: 4px solid #f8f9fa;
    box-shadow: 0 0 0 4px #556B2F;
}
.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 0.5rem;
    display: block;
}
.step h3 {
    color: #343a40;
}
 
.features-list {
    list-style-type: none;
    max-width: 800px;
    margin: 0 auto;
}
.features-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.features-list .fas {
    color: #556B2F;
    margin-top: 5px;
}

 
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.card-tip h3 {
    color: #343a40;
}
 
.stats-section {
    background-color: #343a40;
    color: #ffffff;
}
.stats-section h2 {
    color: #ffffff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #556B2F; 
    display: block;
}
.stat-label {
    font-size: 1.1rem;
    color: #f8f9fa;
}
 
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.testimonial {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #556B2F;
}
.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-author {
    font-weight: 600;
    color: #343a40;
}
 
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #556B2F;
    box-shadow: 0 0 5px rgba(85, 107, 47, 0.3);
}

.contact-disclaimer {
    font-size: 0.9rem;
    color: #555;
}
.contact-disclaimer strong {
    color: #343a40;
}
.form-status {
    margin-bottom: 1rem;
    font-weight: 600;
}
.form-status.success {
    color: #556B2F;
}
.form-status.error {
    color: #8B0000; 
}
 
.site-footer-main {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 50px 0 20px 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.site-footer-main h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-about p {
    color: #ccc;
    margin-bottom: 1.5rem;
}
.footer-contacts p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contacts .fas {
    color: #556B2F;
}
.footer-contacts a,
.footer-links a,
.footer-legal a {
    color: #ccc;
}
.footer-contacts a:hover,
.footer-links a:hover,
.footer-legal a:hover {
    color: #ffffff;
}
.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.8rem;
}

.footer-social a {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 15px;
}
.footer-social a:hover {
    color: #556B2F;
}

.footer-bottom {
    border-top: 1px solid #4a5056;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}
.footer-disclaimer {
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}
 
.page-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.page-content h1 {
    border-bottom: 3px solid #556B2F;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}
.page-content h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #556B2F;
    padding-left: 10px;
}
.page-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}
.page-content li {
    margin-bottom: 0.5rem;
}

 
.cookie-banner {
    position: fixed;
    bottom: -100%; 
    left: 0;
    width: 100%;
    background-color: #343a40;
    color: #f8f9fa;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: bottom 0.5s ease-in-out;
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-banner p {
    margin: 0;
}
.cookie-banner a {
    color: #f8f9fa;
    font-weight: 600;
    text-decoration: underline;
}
.cookie-banner .btn-secondary {
    background-color: #556B2F; 
    border-color: #556B2F;
    flex-shrink: 0; 
}
 


@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
}


@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        height: auto;
        padding: 60px 0;
    }

    .steps-container,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .step {
        margin-bottom: 20px;
    }
    .stat-item {
        margin-bottom: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contacts p {
        justify-content: center;
    }
    .footer-social {
        margin-top: 10px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .page-content {
        padding: 30px 20px;
    }
}