/* 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: #e4e4e4;
    background-color: #0a0a0a;
}

.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;
}

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

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

a:hover {
    color: #ff33b3;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ff009d, #ff33b3);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6008a, #ff009d);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 0, 157, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff009d;
    padding: 12px 30px;
    border: 2px solid #ff009d;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

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

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

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

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

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

.nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav a:hover,
.nav a.active {
    color: #ff009d;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff009d;
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #ff009d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.25rem;
    color: #cccccc;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.content-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.content-item h3 {
    color: #ff009d;
    margin-bottom: 15px;
}

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expert-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.expert-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.expert-card h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.expert-card p {
    color: #cccccc;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.team-member .position {
    color: #ff009d;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .bio {
    color: #cccccc;
    margin-bottom: 20px;
}

.team-member .expertise h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.team-member .expertise ul {
    list-style: none;
}

.team-member .expertise li {
    color: #cccccc;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.team-member .expertise li:before {
    content: "▶";
    color: #ff009d;
    position: absolute;
    left: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.advantage-item h3 {
    color: #ff009d;
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.service-item h3 {
    color: #ff009d;
    margin-bottom: 15px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.review-rating {
    color: #ff009d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-author {
    color: #ff009d;
    font-weight: 600;
    margin-top: 15px;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: #ff009d;
    margin-bottom: 10px;
}

.contact-item p {
    color: #cccccc;
}

.contact-item a {
    color: #ff009d;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ff33b3;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff009d;
    box-shadow: 0 0 0 2px rgba(255, 0, 157, 0.2);
}

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

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

.checkbox-group input {
    width: auto;
    margin-top: 2px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Contact Page */
.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.company-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.company-header {
    background: linear-gradient(135deg, #ff009d, #ff33b3);
    padding: 30px;
    text-align: center;
}

.company-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.company-header h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.company-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.rating-text {
    color: #ffffff;
    font-weight: 600;
}

.company-info {
    padding: 30px;
}

.company-info p {
    margin-bottom: 20px;
}

.company-advantages h4,
.financial-indicators h4,
.equipment-info h4 {
    color: #ff009d;
    margin-bottom: 15px;
    margin-top: 25px;
}

.company-advantages ul,
.equipment-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.company-advantages li,
.equipment-info li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.company-advantages li:before,
.equipment-info li:before {
    content: "✓";
    color: #ff009d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.indicators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.indicator .label {
    color: #cccccc;
}

.indicator .value {
    color: #ff009d;
    font-weight: 600;
}

/* Market Analysis */
.market-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.analysis-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.analysis-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.analysis-item h3 {
    color: #ff009d;
    margin-bottom: 15px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.faq-item h3 {
    color: #ff009d;
    margin-bottom: 15px;
}

/* Social Media */
.social-media-section {
    text-align: center;
    margin-top: 60px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.social-icon {
    font-size: 2rem;
}

.social-info h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.social-info p {
    color: #cccccc;
    margin-bottom: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.value-item h3 {
    color: #ff009d;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff009d, #ff33b3);
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-content p {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-content .btn-primary {
    background: #ffffff;
    color: #ff009d;
}

.cta-content .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    color: #ff009d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 0, 157, 0.3);
}

.legal-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 25px;
}

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

.legal-section li {
    margin-bottom: 8px;
    color: #cccccc;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Cookie Settings */
.cookies-table {
    margin-top: 30px;
}

.cookies-table h3 {
    color: #ff009d;
    margin-bottom: 20px;
    margin-top: 30px;
}

.cookie-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.cookie-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.cookie-item p {
    color: #cccccc;
    margin-bottom: 5px;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}

.browser-instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.browser-instructions h4 {
    color: #ff009d;
    margin-bottom: 10px;
}

.browser-instructions p {
    color: #cccccc;
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-you-section {
    padding: 150px 0 100px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #ff009d;
    margin-bottom: 20px;
}

.thank-you-content .lead {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.thank-you-info {
    margin-bottom: 60px;
}

.thank-you-info h2 {
    color: #ffffff;
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff009d, #ff33b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.step-content p {
    color: #cccccc;
}

.contact-alternatives {
    margin-bottom: 60px;
}

.contact-alternatives h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.contact-icon {
    font-size: 2rem;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-info p {
    color: #ff009d;
    margin-bottom: 0;
}

.contact-info small {
    color: #999;
    font-size: 0.9rem;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.resource-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 157, 0.1);
    border-color: rgba(255, 0, 157, 0.3);
}

.resource-icon {
    margin-bottom: 20px;
}

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

.resource-item h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.resource-item p {
    color: #cccccc;
    margin-bottom: 20px;
}

.resource-link {
    color: #ff009d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #ff33b3;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    text-align: center;
}

.newsletter-content h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #cccccc;
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    margin-bottom: 0;
}

.newsletter-form button {
    flex-shrink: 0;
}

.newsletter-note {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: #ff009d;
    margin-bottom: 20px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff009d;
}

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

.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: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

.cookie-text p {
    color: #cccccc;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept-all {
    background: #ff009d;
    color: #ffffff;
}

.btn-accept-all:hover {
    background: #e6008a;
}

.btn-accept-necessary {
    background: transparent;
    color: #ff009d;
    border: 1px solid #ff009d;
}

.btn-accept-necessary:hover {
    background: #ff009d;
    color: #ffffff;
}

.btn-settings {
    background: transparent;
    color: #cccccc;
    border: 1px solid #cccccc;
}

.btn-settings:hover {
    background: #cccccc;
    color: #000000;
}

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #ffffff;
    margin-bottom: 30px;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option input {
    margin-right: 10px;
}

.cookie-option label {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

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

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

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

.btn-save {
    background: #ff009d;
    color: #ffffff;
}

.btn-save:hover {
    background: #e6008a;
}

.btn-cancel {
    background: transparent;
    color: #cccccc;
    border: 1px solid #cccccc;
}

.btn-cancel:hover {
    background: #cccccc;
    color: #000000;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav a {
        display: block;
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-grid,
    .experts-grid,
    .team-grid,
    .advantages-grid,
    .services-grid,
    .reviews-grid,
    .companies-grid,
    .market-analysis,
    .faq-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content,
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .next-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links-large {
        flex-direction: column;
        gap: 20px;
    }
    
    .indicators-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .company-card {
        min-width: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
}
