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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #021b29;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #f8f9fa;
}

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

.section-header h2 {
    color: #021b29;
    margin-bottom: 20px;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

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

.btn-primary {
    background-color: #ffc400;
    color: #021b29;
}

.btn-primary:hover {
    background-color: #e6b000;
    color: #021b29;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #021b29;
    color: #ffc400;
}

.btn-secondary:hover {
    background-color: #033247;
    color: #ffc400;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: #021b29;
    color: #ffc400;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #021b29;
    margin-bottom: 0;
}

.logo span {
    font-size: 0.9rem;
    color: #666;
}

.logo h1 a {
    color: #021b29;
}

.logo h1 a:hover {
    color: #ffc400;
}

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

.nav-list a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ffc400;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc400;
    transition: width 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(2, 27, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.mobile-menu-content a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #ffc400;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #021b29 0%, #033247 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #021b29 0%, #033247 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

/* Company Section */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.company-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
}

.company-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.service-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

/* Experts Section */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.expert-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
}

.expert-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: block;
}

.expert-card h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.expert-card p:first-of-type {
    color: #ffc400;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffc400;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-rating {
    font-size: 1.5rem;
    color: #ffc400;
    margin-bottom: 1rem;
}

.review-author {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-item h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

/* Forms */
.contact-form,
.newsletter-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form.large {
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #021b29;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea, 
.form-row input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc400;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #ffc400;
    border-color: #ffc400;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #021b29;
    font-weight: bold;
    font-size: 12px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #021b29 0%, #033247 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.newsletter-form .form-row {
    justify-content: center;
    max-width: 100%;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    border-color: #ffc400;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background-color: #021b29;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc400;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #021b29;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content h3 {
    color: #ffc400;
    margin-bottom: 1rem;
}

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

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-buttons button:first-child {
    background-color: #ffc400;
    color: #021b29;
}

.cookie-buttons button:first-child:hover {
    background-color: #e6b000;
}

.cookie-buttons button:not(:first-child) {
    background-color: transparent;
    color: #ffc400;
    border: 2px solid #ffc400;
}

.cookie-buttons button:not(:first-child):hover {
    background-color: #ffc400;
    color: #021b29;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #021b29;
}

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

.cookie-option p {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

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

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-modal-buttons button:first-child {
    background-color: #ffc400;
    color: #021b29;
}

.cookie-modal-buttons button:first-child:hover {
    background-color: #e6b000;
}

.cookie-modal-buttons button:last-child {
    background-color: #ddd;
    color: #333;
}

.cookie-modal-buttons button:last-child:hover {
    background-color: #ccc;
}

/* Company Pages Specific Styles */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    color: #021b29;
    margin-bottom: 1.5rem;
}

.image-content {
    text-align: center;
}

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

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

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.value-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.team-photo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.team-info h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #ffc400;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    margin-bottom: 1rem;
    color: #666;
}

.team-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-qualifications span {
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #333;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffc400;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #021b29;
    font-weight: 600;
}

/* Methodology Steps */
.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    background-color: #ffc400;
    color: #021b29;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

/* Companies Comparison */
.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.overview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.overview-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.company-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.company-card.top-performer {
    border: 3px solid #ffc400;
}

.company-rank {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ffc400;
    color: #021b29;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 60px;
    height: 60px;
}

.company-header h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.company-rating {
    margin-left: auto;
    text-align: right;
}

.rating-stars {
    color: #ffc400;
    font-size: 1.2rem;
}

.rating-score {
    display: block;
    font-weight: 600;
    color: #021b29;
}

.company-info {
    margin-bottom: 1.5rem;
}

.company-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.company-strengths,
.company-equipment {
    margin-bottom: 1.5rem;
}

.company-strengths h4,
.company-equipment h4 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.company-strengths ul {
    list-style: none;
    padding-left: 0;
}

.company-strengths li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.3rem;
    color: #666;
}

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

.company-equipment p {
    color: #666;
    font-size: 0.9rem;
}

/* Analysis Content */
.analysis-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.analysis-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.analysis-section h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

/* Profitability Chart */
.profitability-chart {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-header h3 {
    color: #021b29;
    margin-bottom: 0;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 100px;
    font-weight: 600;
    color: #021b29;
}

.bar-wrapper {
    flex: 1;
    position: relative;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, #ffc400 0%, #e6b000 100%);
    border-radius: 15px;
    transition: width 0.5s ease;
}

.bar-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #021b29;
    font-size: 0.9rem;
}

/* Industry Development */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ffc400;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 60px;
}

.timeline-date {
    background-color: #ffc400;
    color: #021b29;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
}

/* Industry Stats */
.industry-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon img {
    width: 60px;
    height: 60px;
}

.stat-info h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc400;
    margin-bottom: 0.3rem;
}

.stat-unit {
    color: #666;
    font-size: 0.9rem;
}

/* Market Share */
.market-share {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.market-chart {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.chart-section {
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

.chart-section.orlen {
    background-color: #021b29;
    width: 62%;
}

.chart-section.shell {
    background-color: #ffc400;
    width: 12%;
}

.chart-section.bp {
    background-color: #666;
    width: 10%;
}

.chart-section.others {
    background-color: #ccc;
    width: 16%;
}

.chart-label {
    color: #fff;
    font-weight: 600;
}

.chart-section.shell .chart-label,
.chart-section.others .chart-label {
    color: #021b29;
}

.chart-label h3 {
    margin-bottom: 0;
    font-size: 1rem;
}

.chart-label p {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.market-analysis h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.market-analysis p {
    color: #666;
    margin-bottom: 1rem;
}

/* Technology Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.tech-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

/* Investment Content */
.investment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.investment-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.investment-section h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.investment-section ul {
    list-style: none;
    padding-left: 0;
}

.investment-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.investment-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffc400;
    font-weight: bold;
}

/* Future Trends */
.future-trends {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trend-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.trend-year {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc400;
    color: #021b29;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.trend-card h3 {
    color: #021b29;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.trend-card p {
    color: #666;
    margin-bottom: 0;
}

/* Challenges */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.challenge-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.challenge-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.challenge-card p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.contact-info-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

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

/* Office Hours */
.office-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hours-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: #666;
    font-weight: 600;
}

.time {
    color: #021b29;
    font-weight: 600;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #021b29;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffc400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    margin-bottom: 0;
}

/* Team Contact */
.team-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-contact-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-contact-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
}

.team-contact-card h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.team-contact-position {
    color: #ffc400;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-contact-specialty {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-contact-info p {
    color: #666;
    margin-bottom: 0.3rem;
}

/* Thank You Page */
.thanks-section {
    background: linear-gradient(135deg, #021b29 0%, #033247 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    filter: invert(1);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

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

.info-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.info-item h3 {
    color: #ffc400;
    margin-bottom: 1rem;
}

.info-item p {
    color: #e0e0e0;
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Recommended Content */
.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recommended-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.recommended-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.recommended-card h3 {
    color: #021b29;
    margin-bottom: 1rem;
}

.recommended-card p {
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Alternative */
.contact-alternative {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-alternative h2 {
    color: #021b29;
    margin-bottom: 2rem;
}

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

.contact-method {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-method-info h3 {
    color: #021b29;
    margin-bottom: 0.5rem;
}

.contact-method-info p {
    color: #666;
    margin-bottom: 0.3rem;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #021b29;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffc400;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #021b29;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

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

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

.legal-section strong {
    color: #021b29;
}

.legal-section a {
    color: #ffc400;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #021b29;
}

/* Cookies Table */
.cookies-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookies-table th {
    background-color: #021b29;
    color: #fff;
    font-weight: 600;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookies-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        min-width: auto;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
    }
    
    .newsletter-form .form-row .btn {
        width: 100%;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .team-photo {
        margin: 0 auto;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }
    
    .market-share {
        grid-template-columns: 1fr;
    }
    
    .market-chart {
        order: 2;
    }
    
    .market-analysis {
        order: 1;
    }
    
    .chart-section {
        width: 100% !important;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method-icon {
        margin: 0 auto;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons button {
        width: 100%;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .thanks-actions .btn {
        width: 100%;
    }
    
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .page-header-content h1 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .company-card,
    .service-card,
    .expert-card {
        padding: 1.5rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .contact-form.large {
        padding: 2rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .company-card {
        padding: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .cookies-table {
        font-size: 0.8rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 0.3rem;
    }
    [class*="-grid"], .investment-content {
        grid-template-columns: 1fr;
    }
}

/* Animation and Transitions */
.section,
.card,
.btn {
    transition: all 0.3s ease;
}

.company-card:hover,
.service-card:hover,
.expert-card:hover,
.review-card:hover,
.value-card:hover,
.tech-card:hover,
.recommended-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #ffc400;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #021b29;
    }
    
    .btn-secondary {
        border: 2px solid #ffc400;
    }
    
    .company-card,
    .service-card,
    .expert-card {
        border: 1px solid #ccc;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .newsletter,
    .cookie-banner,
    .mobile-menu,
    .btn {
        display: none !important;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .hero {
        padding: 20px 0;
        background: none;
        color: #000;
    }
    
    .page-header {
        padding: 20px 0;
        background: none;
        color: #000;
    }
    
    .legal-content {
        max-width: none;
    }
    
    .legal-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
