/* Base Styles */
:root {
   --primary-color: #b648a4;
--secondary-color: #b6ba38;
--accent-color: #9dba34;
--dark-color: #2a2a2a;
--light-color: #cdd19f;
--success-color: #3cba54;
--danger-color: #e63946;
--max-width: 1280px;
--gradient-primary: linear-gradient(135deg, #8b994d 0%, #3d7a61 100%);
--gradient-secondary: linear-gradient(135deg, #3a7d44 0%, #2e6235 100%);
--gradient-accent: linear-gradient(135deg, #d9822b 0%, #b56a23 100%);
--gradient-dark: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
--gradient-success: linear-gradient(135deg, #3cba54 0%, #2e8c3f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #a6e4c8;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(74, 111, 165, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 111, 165, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(107, 142, 35, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 142, 35, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
}

.btn-outline:hover:before {
    left: 0;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.logo {
    position: relative;
    padding: 5px 0;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.logo a:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(74, 111, 165, 0.1);
    border-radius: 50%;
    z-index: -1;
    left: -10px;
    top: -8px;
}

.logo a:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(230, 179, 30, 0.2);
    border-radius: 50%;
    z-index: -1;
    right: -5px;
    bottom: -5px;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 30px;
    position: relative;
}

.main-nav ul li a:not(.btn) {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.main-nav ul li a:not(.btn):after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-nav ul li a:not(.btn):hover {
    color: var(--primary-color);
}

.main-nav ul li a:not(.btn):hover:after {
    width: 100%;
}

.main-nav .btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.hero-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(74, 111, 165, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(230, 179, 30, 0.1);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* About Us Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(74, 111, 165, 0.3);
    text-align: center;
}

.about-experience .number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-experience .text {
    font-size: 16px;
}

.about-text h3 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Our Approach Section */
.our-approach {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.approach-text h3 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.approach-text p {
    margin-bottom: 20px;
    color: #666;
}

.approach-steps {
    display: grid;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.approach-bg-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 111, 165, 0.1) 0%, rgba(74, 111, 165, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

/* Our Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Counter Section */
.counter-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.counter-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 16px;
    opacity: 0.9;
}

/* Our Goals Section */
.goals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.goals-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.goals-text h3 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.goals-text p {
    margin-bottom: 20px;
    color: #666;
}

.goals-list {
    margin-top: 30px;
}

.goals-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.goals-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 3px;
}

.goals-list li span {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.testimonial-quote {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    font-style: normal;
}

/* FAQ Section */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 16px;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    color: #666;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(74, 111, 165, 0.05);
}

/* Contact Us Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h3 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.contact-text p a {
    color: #666;
    transition: all 0.3s ease;
}

.contact-text p a:hover {
    color: var(--primary-color);
}

.contact-social h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

.contact-map {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.alert i {
    font-size: 20px;
}

.hidden {
    display: none;
}

/* Footer Styles */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.footer:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 111, 165, 0.1) 0%, rgba(74, 111, 165, 0) 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.footer-logo h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.footer-logo h3:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(230, 179, 30, 0.1);
    border-radius: 50%;
    z-index: -1;
    left: -10px;
    top: -5px;
}

.footer-logo p {
    color: #bbb;
    font-style: italic;
    margin-bottom: 20px;
}

.footer-contact ul li,
.footer-links ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.footer-contact ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-color);
}

.footer-links ul li a {
    color: #ddd;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links ul li a:before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links ul li a:hover:before {
    opacity: 1;
    left: -15px;
}

.footer h4 {
    margin-bottom: 25px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 15px;
    font-size: 20px;
}

.footer h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-accent);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover:before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
}

/* Cookie Popup */
.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.privacy-popup-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.privacy-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.privacy-popup-buttons .btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .approach-content,
    .goals-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-image,
    .about-image,
    .goals-image {
        margin-top: 30px;
    }

    .about-experience {
        right: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .privacy-popup-content {
        flex-direction: column;
    }

    .privacy-popup-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        margin-bottom: 10px;
    }
}