/* 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: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

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

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

a:hover {
    color: #14a0d6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-primary {
    background-color: #1eb6e8;
    color: #ffffff;
    border-color: #1eb6e8;
}

.btn-primary:hover {
    background-color: #14a0d6;
    border-color: #14a0d6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 182, 232, 0.3);
}

.btn-secondary {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

.btn-secondary:hover {
    background-color: #444444;
    border-color: #444444;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #1eb6e8;
    border-color: #1eb6e8;
}

.btn-outline:hover {
    background-color: #1eb6e8;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

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

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

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

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1eb6e8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

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

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #1eb6e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #c0c0c0;
    line-height: 1.6;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: #c0c0c0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1eb6e8;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #c0c0c0;
    font-weight: 500;
}

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

.service-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 182, 232, 0.1);
    border-color: #1eb6e8;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-description {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Advantages */
.advantages {
    background-color: #111111;
}

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

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    opacity: 0.8;
}

.advantage-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.advantage-content p {
    color: #c0c0c0;
    line-height: 1.6;
}

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

.review-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.review-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #c0c0c0;
    font-style: italic;
}

.review-author strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Contact Info */
.contact-info {
    background-color: #111111;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.contact-icon {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.contact-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-content p {
    margin: 0;
}

.contact-content a {
    color: #1eb6e8;
    font-weight: 500;
}

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

/* Process Steps */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1eb6e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-description {
    margin-bottom: 1.5rem;
    color: #c0c0c0;
    line-height: 1.6;
}

.step-list {
    list-style: none;
}

.step-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #c0c0c0;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1eb6e8;
    font-weight: bold;
}

/* Documents */
.documents {
    background-color: #111111;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.document-category {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.category-title {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1eb6e8;
}

.document-list {
    list-style: none;
}

.document-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
    color: #c0c0c0;
}

.document-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

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

.cost-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
}

.cost-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: #1eb6e8;
    margin-bottom: 1rem;
}

.cost-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cost-list {
    list-style: none;
    text-align: left;
}

.cost-list li {
    padding: 0.5rem 0;
    color: #c0c0c0;
    border-bottom: 1px solid #333333;
}

.cost-list li:last-child {
    border-bottom: none;
}

/* Tips */
.tips {
    background-color: #111111;
}

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

.tip-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 182, 232, 0.1);
    border-color: #1eb6e8;
}

.tip-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.tip-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tip-description {
    color: #c0c0c0;
    line-height: 1.6;
}

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

.area-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 182, 232, 0.1);
    border-color: #1eb6e8;
}

.area-card.premium {
    border-color: gold;
}

.area-card.trendy {
    border-color: #1eb6e8;
}

.area-card.emerging {
    border-color: #10a810;
}

.area-header {
    padding: 2rem;
    border-bottom: 1px solid #333333;
}

.area-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.area-name {
    font-size: 1.5rem;
    color: #ffffff;
}

.area-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.area-icon {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.area-price {
    padding: 1.5rem 2rem;
    background-color: #222222;
    text-align: center;
}

.price-range {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1eb6e8;
    display: block;
}

.price-label {
    color: #c0c0c0;
    font-size: 0.9rem;
}

.area-description {
    padding: 2rem;
}

.area-features {
    padding: 0 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #c0c0c0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.area-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-top: 1rem;
}

.pros, .cons {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 8px;
}

.pros h4 {
    color: #10a810;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.25rem 0;
    color: #c0c0c0;
    font-size: 0.9rem;
}

/* Comparison Table */
.table-container {
    overflow-x: auto;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

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

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

.comparison-table-grid th {
    background-color: #222222;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table-grid td {
    color: #c0c0c0;
}

.comparison-table-grid tbody tr:hover {
    background-color: #222222;
}

/* Contact Section */
.contact-section {
    background-color: #111111;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

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

.form-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-subtitle {
    color: #c0c0c0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #333333;
    border-radius: 6px;
    background-color: #222222;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    gap: 0.75rem;
    cursor: pointer;
    color: #c0c0c0;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

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

.contact-info-header {
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.info-subtitle {
    color: #c0c0c0;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.contact-info-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-info-text {
    margin-bottom: 0.25rem;
    color: #c0c0c0;
}

.contact-info-text a {
    color: #1eb6e8;
    font-weight: 500;
}

.contact-info-note {
    font-size: 0.9rem;
    color: #888888;
}

.social-contact {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
}

.social-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.social-links-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.social-link-contact {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #222222;
    border-radius: 6px;
    color: #1eb6e8;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    background-color: #1eb6e8;
    color: #ffffff;
}

.office-hours {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.hours-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

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

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

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

.day {
    color: #c0c0c0;
}

.time {
    color: #1eb6e8;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background-color: #111111;
}

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

.faq-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.faq-question {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.faq-answer {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Thank You Section */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
    text-align: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.thank-you-message {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #c0c0c0;
    line-height: 1.6;
}

.next-steps {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.steps-list .step-item {
    margin-bottom: 2rem;
}

.steps-list .step-item:last-child {
    margin-bottom: 0;
}

.contact-reminder {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 3rem;
}

.contact-reminder-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #222222;
    border-radius: 8px;
    color: #1eb6e8;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background-color: #1eb6e8;
    color: #ffffff;
}

.contact-option-icon {
    width: 24px;
    height: 24px;
}

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

/* Resources Section */
.resources-section {
    padding: 80px 0;
}

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

.resource-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 182, 232, 0.1);
    border-color: #1eb6e8;
}

.resource-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.resource-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.resource-description {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #1eb6e8;
    font-weight: 600;
    text-decoration: underline;
}

.resource-link:hover {
    color: #14a0d6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1eb6e8 0%, #14a0d6 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #1eb6e8;
    border-color: #ffffff;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    color: #14a0d6;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-section .btn-outline:hover {
    background-color: #ffffff;
    color: #1eb6e8;
}

/* Legal Content */
.legal-content {
    padding: 120px 0 80px;
    background-color: #111111;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

.legal-subtitle {
    color: #c0c0c0;
    font-size: 1.125rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 3rem;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1eb6e8;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #c0c0c0;
    line-height: 1.6;
}

.legal-text strong {
    color: #ffffff;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: #222222;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table td {
    color: #c0c0c0;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 3px solid #1eb6e8;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

.cookie-buttons .btn {
    margin: 0;
    padding: 8px 20px;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid #333333;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

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

.social-link {
    color: #c0c0c0;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: #222222;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    background-color: #1eb6e8;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #111111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        gap: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .costs-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .legal-text {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .table-container {
        font-size: 0.875rem;
    }

    .comparison-table-grid th,
    .comparison-table-grid td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .service-card,
    .tip-card,
    .review-card,
    .resource-card {
        padding: 2rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .legal-text {
        padding: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
    }
    .contact-info-item {
        flex-direction: column;
    }
    .cookies-table {
        display: none;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cta-section {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .legal-content {
        padding: 20px 0;
    }

    .legal-text {
        background-color: white;
        border: none;
        box-shadow: none;
    }
}
