/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #121212;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

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

a:hover {
    color: #ffd970;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #c370ff 0%, #a855f7 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 112, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffd970 0%, #f59e0b 100%);
    color: #121212;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 112, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #c370ff;
    color: #c370ff;
}

.btn-outline:hover {
    background: #c370ff;
    color: #ffffff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(195, 112, 255, 0.2);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c370ff;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #c370ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c370ff, #ffd970);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 2rem 0;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: #ffffff;
    font-weight: 500;
    border-bottom: 1px solid rgba(195, 112, 255, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(195, 112, 255, 0.1);
    color: #c370ff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #c370ff, #ffd970);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(195, 112, 255, 0.3));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

/* Grid Layouts */
.features-grid,
.experts-grid,
.advantages-grid,
.services-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Cards */
.feature-item,
.expert-card,
.advantage-item,
.service-card,
.review-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover,
.expert-card:hover,
.advantage-item:hover,
.service-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(195, 112, 255, 0.4);
    box-shadow: 0 15px 35px rgba(195, 112, 255, 0.2);
}

.advantage-item {
    text-align: center;
}

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage-icon-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 10px rgba(195, 112, 255, 0.3));
}

/* Review Cards */
.review-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author span {
    color: #c370ff;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 10px rgba(195, 112, 255, 0.3));
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #c370ff;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(195, 112, 255, 0.3);
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c370ff;
    box-shadow: 0 0 0 3px rgba(195, 112, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-text {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(195, 112, 255, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #c370ff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffd970;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(195, 112, 255, 0.1);
    color: #888;
}

/* Company Pages Specific Styles */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(195, 112, 255, 0.1), rgba(255, 217, 112, 0.1));
    border-bottom: 1px solid rgba(195, 112, 255, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c370ff, #ffd970);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.25rem;
    color: #e0e0e0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(195, 112, 255, 0.4);
    box-shadow: 0 15px 35px rgba(195, 112, 255, 0.2);
}

.team-role {
    color: #c370ff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(195, 112, 255, 0.2);
    color: #c370ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mission and Values */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 217, 112, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 217, 112, 0.4);
    box-shadow: 0 15px 35px rgba(255, 217, 112, 0.2);
}

.mission-item h3 {
    color: #ffd970;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: rgba(195, 112, 255, 0.4);
    box-shadow: 0 10px 25px rgba(195, 112, 255, 0.1);
}

.value-item h3 {
    color: #c370ff;
    margin-bottom: 0.5rem;
}

/* Companies Page */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: rgba(195, 112, 255, 0.4);
    box-shadow: 0 15px 35px rgba(195, 112, 255, 0.2);
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.company-header h3 {
    color: #c370ff;
    margin-bottom: 0;
    flex: 1;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 217, 112, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.rating-icon {
    width: 20px;
    height: 20px;
}

.rating-score {
    color: #ffd970;
    font-weight: 600;
}

.company-description {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.company-advantages h4,
.company-financials h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.company-advantages ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.company-advantages li {
    padding: 0.25rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.company-advantages li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c370ff;
    font-weight: bold;
}

.financial-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
}

.metric-icon {
    width: 20px;
    height: 20px;
}

.technology-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 217, 112, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 217, 112, 0.4);
    box-shadow: 0 15px 35px rgba(255, 217, 112, 0.2);
}

.tech-category h3 {
    color: #ffd970;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-section .contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details h3 {
    color: #c370ff;
    margin-bottom: 0.5rem;
}

.contact-details small {
    color: #888;
    font-size: 0.875rem;
}

.contact-form-section {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hours-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.hours-item h3 {
    color: #c370ff;
    margin-bottom: 0.5rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.department-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    border-color: rgba(195, 112, 255, 0.4);
    box-shadow: 0 15px 35px rgba(195, 112, 255, 0.2);
}

.department-card h3 {
    color: #c370ff;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(195, 112, 255, 0.3));
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c370ff, #ffd970);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.thank-you-info {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.thank-you-info h2 {
    color: #c370ff;
    margin-bottom: 1rem;
}

.thank-you-steps {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-steps li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.thank-you-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c370ff;
    font-weight: bold;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.suggested-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.suggestion-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    border-color: rgba(195, 112, 255, 0.4);
    box-shadow: 0 15px 35px rgba(195, 112, 255, 0.2);
}

.suggestion-card h3 {
    color: #c370ff;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #c370ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #ffd970;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.legal-section strong {
    color: #c370ff;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(195, 112, 255, 0.2);
    padding: 1.5rem 0;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    color: #e0e0e0;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(195, 112, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: #c370ff;
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(195, 112, 255, 0.1);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.cookie-category p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .experts-grid,
    .advantages-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    [class*="-grid"], .suggested-content {
        grid-template-columns: 1fr;
    }
    .company-header {
        flex-direction: column;
    }
}
