/* Base Styles & CSS Variables */
:root {
    --primary: #1a365d;
    --secondary: #2d74da;
    --accent: #e53e3e;
    --light: #f7fafc;
    --dark: #2d3748;
    --gray: #718096;
    --success: #38a169;
    --error: #e53e3e;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Proxima Nova', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.sticky {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features h2,
.testimonials h2,
.contact h2,
.services-overview h2,
.current-openings h2,
.careers-intro h2,
.about-story h2,
.mission-vision h2,
.core-values h2,
.leadership h2,
.impact-stats h2,
.application-process h2,
.general-application h2,
.employee-testimonials h2,
.service-approach h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.features h2::after,
.testimonials h2::after,
.contact h2::after,
.current-openings h2::after,
.careers-intro h2::after,
.about-story h2::after,
.core-values h2::after,
.leadership h2::after,
.application-process h2::after,
.general-application h2::after,
.employee-testimonials h2::after,
.service-approach h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--error);
}

.field-error {
    color: var(--error);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.g-recaptcha {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.captcha-error {
    color: var(--error);
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

.form-messages {
    margin-top: 20px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Contact Info */
.contact-info {
    padding: 20px 0;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
    width: 40px;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background: var(--white);
}

.milestones {
    margin-top: 50px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.milestone {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission h2 i,
.vision h2 i {
    margin-right: 10px;
}

.core-values {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.leadership {
    padding: 80px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    height: 250px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    padding: 0 20px 20px;
    color: var(--gray);
}

.impact-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Careers Page Styles */
.careers-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-join {
    margin-top: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: 10px;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.current-openings {
    padding: 80px 0;
    background: var(--light);
}

.vacancies-list {
    max-width: 900px;
    margin: 0 auto;
}

.loading-vacancies {
    text-align: center;
    padding: 40px;
    color: var(--gray);
}

.loading-vacancies i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.vacancy-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.vacancy-title {
    color: var(--primary);
    margin-bottom: 10px;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.vacancy-meta span {
    font-size: 0.9rem;
    color: var(--gray);
}

.vacancy-meta i {
    margin-right: 5px;
    color: var(--secondary);
}

.vacancy-description {
    margin-bottom: 15px;
}

.vacancy-requirements h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.vacancy-requirements ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.vacancy-actions {
    margin-top: 20px;
}

.no-vacancies-message {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: 10px;
}

.no-vacancies-message i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 20px;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step {
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* General Application */
.general-application {
    padding: 80px 0;
    background: var(--light);
}

.application-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.application-info {
    padding: 20px;
}

.application-benefits {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.application-benefits ul {
    list-style: none;
    margin-top: 15px;
}

.application-benefits li {
    margin-bottom: 10px;
}

.application-benefits i {
    color: var(--success);
    margin-right: 10px;
}

.application-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.privacy-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 15px;
    text-align: center;
}

/* Employee Testimonials */
.employee-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.employee-card {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
}

.employee-quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

.employee-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.employee-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.detailed-services {
    padding: 80px 0;
}

.detailed-services.alt-bg {
    background: var(--light);
}

.service-category {
    max-width: 1000px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.category-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 15px auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-detail {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-detail ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.service-detail li {
    margin-bottom: 8px;
}

.service-approach {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.step {
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-content .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.legal-navigation {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav {
    list-style: none;
    margin-top: 15px;
}

.legal-nav li {
    margin-bottom: 10px;
}

.legal-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-nav a:hover {
    color: var(--secondary);
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    text-align: left;
    margin-bottom: 20px;
}

.policy-section h2::after {
    left: 0;
    transform: none;
}

.policy-section h3 {
    margin: 25px 0 15px;
    color: var(--primary);
}

.notice-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: var(--light);
}

.contact-details {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 1001;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1002;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    width: 90%;
    padding: 30px;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.required {
    background: #e53e3e;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.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: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float,
.telegram-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float {
    background: #25D366;
}

.telegram-float {
    background: #0088cc;
}

.whatsapp-float:hover,
.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container,
    .application-container,
    .mission-vision .container,
    .legal-content .container {
        grid-template-columns: 1fr;
    }
    
    .legal-navigation {
        position: static;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid,
    .values-grid,
    .benefits-grid,
    .service-grid,
    .employee-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps,
    .approach-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero,
    .page-hero {
        padding: 130px 0 60px;
    }
    
    .hero h1,
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .vacancy-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float,
    .telegram-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}