/* Base Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff9900;
    --accent-color: #25d366;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #e9ecef;
    --text-color: #333333;
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #004d99;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #004d99;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #e68a00;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
}

.main-nav .nav-list li {
    margin-left: 25px;
}

.main-nav .nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav .nav-list a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav .nav-list a:not(.btn):hover:after,
.main-nav .nav-list a.active:not(.btn):after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

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

.hero-svg {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Companies Section */
.companies {
    background-color: white;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.company-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-logo {
    margin-bottom: 20px;
}

.company-logo img {
    height: 80px;
    width: auto;
}

.company-card h3 {
    margin-bottom: 15px;
}

.company-card p {
    color: #666;
    margin-bottom: 20px;
}

.company-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stat span {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stat p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison {
    background-color: var(--light-color);
}

.comparison-tabs {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.tab-nav {
    display: flex;
    background-color: var(--gray-color);
}

.tab-btn {
    padding: 15px 25px;
    flex: 1;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    background-color: transparent;
    border: none;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: white;
    color: var(--primary-color);
    border-top: 3px solid var(--primary-color);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.chart-container {
    text-align: center;
    margin-bottom: 30px;
}

.chart {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.price-table {
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th, .price-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-color);
}

.price-table th {
    background-color: var(--gray-color);
    font-weight: 600;
}

.price-table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.profit-info, .ratings-info {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.rating-details {
    margin-bottom: 20px;
}

.rating-details h4 {
    margin-bottom: 10px;
}

.rating-details ul {
    list-style: disc;
    margin-left: 20px;
}

.rating-details li {
    margin-bottom: 5px;
}

/* Equipment Section */
.equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.equipment-item:nth-child(even) {
    flex-direction: row-reverse;
}

.equipment-image {
    flex: 1;
    text-align: center;
}

.equipment-image img {
    max-width: 100%;
    max-height: 300px;
}

.equipment-content {
    flex: 2;
}

.equipment-content h3 {
    margin-bottom: 15px;
}

.equipment-advantages {
    margin-top: 20px;
    list-style: none;
}

.equipment-advantages li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.equipment-advantages li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 102, 204, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Workers Section */
.workers {
    background-color: white;
}

.workers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.worker-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.worker-card:hover {
    transform: translateY(-10px);
}

.worker-image {
    height: 300px;
    overflow: hidden;
}

.worker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.worker-card:hover .worker-image img {
    transform: scale(1.05);
}

.worker-info {
    padding: 20px;
    text-align: center;
}

.worker-info h3 {
    margin-bottom: 5px;
}

.worker-info p {
    color: #666;
    margin-bottom: 15px;
}

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

.worker-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: var(--transition);
}

.worker-social a:hover {
    background-color: var(--dark-color);
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Blog Section */
.blog {
    background-color: white;
}

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

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: var(--dark-color);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content h2, .newsletter-content p {
    color: white;
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-checkbox {
    width: 100%;
    margin: 15px 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}

.newsletter-form button {
    min-width: 150px;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-wrapper {
    display: flex;
    gap: 30px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-form form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    resize: vertical;
    height: 150px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav-column {
    flex: 1;
    min-width: 150px;
}

.footer-nav-column h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-nav-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: #ccc;
}

.footer-nav-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

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

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 2;
    min-width: 300px;
}

.cookie-text h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow-y: auto;
}

.cookie-modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    overflow: hidden;
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-color);
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info h4 {
    margin-bottom: 5px;
}

.cookie-option-info p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.cookie-modal-footer {
    padding: 20px;
    text-align: right;
    border-top: 1px solid var(--gray-color);
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    margin-bottom: 10px;
}

.legal-header p {
    color: #666;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
}
.contact-info{
    display:flex;
    justify-content:center;
}
.legal-toc {
    flex: 1;
    top: 100px;
    align-self: flex-start;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 250px;
    max-height: 80vh;
    overflow-y: auto;
}

.legal-toc h2 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-toc ul {
    list-style: none;
}

.legal-toc ul li {
    margin-bottom: 10px;
}

.legal-toc ul li a {
    color: var(--dark-color);
}

.legal-toc ul li a:hover {
    color: var(--primary-color);
}

.legal-section-item {
    margin-bottom: 40px;
}

.legal-section-item h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-color);
}

.legal-section-item h3 {
    margin: 25px 0 15px;
}

.legal-section-item ul, .legal-section-item ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section-item ul li, .legal-section-item ol li {
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.thanks-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    text-align: left;
}

.thanks-info h2 {
    margin-bottom: 20px;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.thanks-info ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

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

.thanks-image {
    margin-top: 50px;
}

.additional-content {
    background-color: var(--light-color);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    margin-bottom: 10px;
}

.article-content h3 a {
    color: var(--dark-color);
}

.article-content h3 a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container, .equipment-item, .contact-wrapper {
        flex-direction: column;
    }
    
    .hero-content, .equipment-content, .equipment-image, .contact-info, .contact-form {
        padding: 0;
        flex: auto;
        width: 100%;
    }
    
    .hero-content, .equipment-image {
        margin-bottom: 30px;
    }
    
    .equipment-item:nth-child(even) {
        flex-direction: column;
    }
    
    .legal-content {
        flex-direction: column;
    }
    
    .legal-toc {
        position: static;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: var(--transition);
        z-index: 900;
        overflow-y: auto;
    }
    
    .main-nav .nav-list.active {
        left: 0;
    }
    
    .main-nav .nav-list li {
        margin: 15px 0;
        width: 100%;
    }
    
    .main-nav .nav-list a.btn {
        width: 100%;
        text-align: center;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .cookie-container, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons, .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 15px;
    }
}