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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e67e22;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #34495e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 20px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.8;
}

.about-icon i {
    font-size: 6rem;
    color: #95a5a6;
    display: block;
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-card i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-item p {
    color: #7f8c8d;
}

/* Pricing Preview */
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}

.price-card.featured {
    border: 3px solid #e67e22;
    transform: scale(1.05);
}

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

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-card i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-card p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.price-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.price-link:hover {
    color: #d35400;
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #f39c12;
}

.testimonial-card p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.testimonial-author i {
    font-size: 2rem;
    color: #95a5a6;
}

/* Contact Preview */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: #e67e22;
    margin-top: 5px;
}

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

.contact-item p {
    color: #34495e;
    line-height: 1.6;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

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

.cookie-content i {
    font-size: 2rem;
    color: #e67e22;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.cookie-btn.accept {
    background: #e67e22;
    color: white;
}

.cookie-btn.necessary {
    background: #95a5a6;
    color: white;
}

.cookie-btn.custom {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-modal-header h3 {
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #95a5a6;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-category-header input[type="checkbox"] {
    transform: scale(1.2);
}

.cookie-category-header label {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-category p {
    color: #7f8c8d;
    margin-left: 30px;
}

.cookie-modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ecf0f1;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

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

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

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

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

.submit-btn {
    background: linear-gradient(45deg, #e67e22, #f39c12);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.blog-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-card p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #d35400;
}

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

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #34495e;
}

/* Blog Article Styles */
.blog-article {
    padding: 40px 0;
}

.article-header {
    margin-bottom: 50px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #e67e22;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #e67e22;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.article-icon {
    font-size: 2rem;
    color: #e67e22;
    margin-top: 5px;
    flex-shrink: 0;
}

.lead {
    font-size: 1.2rem;
    color: #34495e;
    margin: 0;
}

.article-content h2 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-content h2 i {
    color: #e67e22;
}

.article-content p {
    margin-bottom: 20px;
    color: #34495e;
}

.article-cta {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-cta p {
    color: white;
    margin-bottom: 25px;
}

.article-cta .cta-button {
    background: white;
    color: #e67e22;
}

.article-footer {
    border-top: 1px solid #ecf0f1;
    padding-top: 40px;
    margin-top: 50px;
}

.article-tags {
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    background: #ecf0f1;
    color: #34495e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px 5px 5px 0;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-link {
    color: #e67e22;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid #e67e22;
    border-radius: 25px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: #e67e22;
    color: white;
}

/* Contact Form Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-card p {
    color: #34495e;
    margin-bottom: 5px;
}

.contact-card small {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.contact-card a {
    color: #e67e22;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

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

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.map-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.location-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.location-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #34495e;
    font-size: 0.9rem;
}

.location-features i {
    color: #e67e22;
    font-size: 1rem;
}

.directions h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.direction-item i {
    font-size: 1.5rem;
    color: #e67e22;
    margin-top: 5px;
}

.direction-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 15px;
}

.newsletter-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.newsletter-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

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

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #34495e;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.category-list a:hover {
    background: #f8f9fa;
    color: #e67e22;
}

.category-list span {
    background: #e67e22;
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts a {
    color: #34495e;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.recent-posts a:hover {
    color: #e67e22;
}

.recent-posts small {
    color: #7f8c8d;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .price-card.featured {
        transform: none;
    }

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

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-document h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e67e22;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-document h2 i {
    color: #e67e22;
}

.legal-document h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.legal-document p {
    color: #34495e;
    margin-bottom: 15px;
}

.legal-document ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-document li {
    color: #34495e;
    margin-bottom: 8px;
}

.contact-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
    margin: 20px 0;
    font-family: monospace;
    line-height: 1.6;
}

.contact-box i {
    color: #e67e22;
    margin-right: 5px;
}

/* Active navigation state */
.nav-menu a.active {
    color: #e67e22;
    font-weight: 600;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-document {
        padding: 0 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-section .container {
        grid-template-columns: 1fr;
    }
    
    .article-navigation {
        justify-content: center;
        text-align: center;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-intro {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .features-grid,
    .price-cards,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 20px;
        margin: 0 10px;
    }
}

/* Services Detail Pages - Updated v2.1 */
.services-detail {
    padding: 80px 0;
}

.service-item {
    margin-bottom: 80px;
    padding: 40px 0;
}

.service-item.reverse {
    background: #f8f9fa;
    margin: 80px -20px;
    padding: 80px 20px;
    border-radius: 20px;
}

.service-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: flex-start;
}

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

.service-icon i {
    font-size: 4rem;
    color: #e67e22;
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.2);
}

.service-info h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-info h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info h3 i {
    color: #e67e22;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
    padding: 8px 0;
}

.feature-item i {
    color: #e67e22;
    width: 20px;
}

.service-sizes ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-sizes li {
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1.6;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.theme-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.theme-item i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 10px;
}

.theme-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.theme-item p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.equipment-category h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.equipment-category h4 i {
    color: #e67e22;
}

.equipment-category ul {
    list-style: none;
    padding: 0;
}

.equipment-category li {
    color: #34495e;
    padding: 5px 0;
    border-bottom: 1px solid #ecf0f1;
}

/* NEW LEISTUNGEN PAGE STYLES */
.main-services {
    padding: 80px 0;
}

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

.service-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-header {
    text-align: center;
    margin-bottom: 25px;
}

.service-header i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 15px;
    display: block;
}

.service-header h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0;
}

.service-box p {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
    padding: 5px 0;
}

.service-features li i {
    color: #2ecc71;
    width: 16px;
}

.service-sizes {
    margin-top: 20px;
}

.size-option {
    padding: 10px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 8px;
    color: #34495e;
    font-size: 0.9rem;
}

.size-option strong {
    color: #2c3e50;
}

.theme-options {
    margin-top: 20px;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.theme-option:last-child {
    border-bottom: none;
}

.theme-option i {
    font-size: 1.5rem;
    color: #e67e22;
    width: 30px;
}

.theme-option div strong {
    display: block;
    color: #2c3e50;
    font-size: 0.95rem;
}

.theme-option div span {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.equipment-list {
    margin-top: 20px;
}

.equipment-category-simple {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.equipment-category-simple:last-child {
    border-bottom: none;
}

.equipment-category-simple h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.equipment-category-simple h4 i {
    color: #e67e22;
    font-size: 1.2rem;
}

.equipment-category-simple p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.additional-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.additional-services-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.additional-services-section h2 i {
    color: #e67e22;
}

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

.additional-item {
    text-align: center;
    padding: 25px 20px;
}

.additional-item i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 15px;
    display: block;
}

.additional-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.additional-item p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Studios Page */
.studios-overview {
    padding: 80px 0;
}

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

.studio-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

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

.studio-card.featured {
    border: 3px solid #e67e22;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #e67e22;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.studio-icon {
    text-align: center;
    margin-bottom: 20px;
}

.studio-icon i {
    font-size: 3rem;
    color: #e67e22;
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.studio-card h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.studio-specs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.studio-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.studio-specs i {
    color: #e67e22;
}

.studio-features {
    margin: 20px 0;
}

.studio-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
    padding: 5px 0;
    font-size: 0.9rem;
}

.studio-features .feature i {
    color: #2ecc71;
    width: 16px;
}

.studio-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.studio-price .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
}

.studio-price .price small {
    font-size: 0.8rem;
    color: #7f8c8d;
}

.book-btn {
    background: #e67e22;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.book-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.photozones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.photozone-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.photozone-icon {
    text-align: center;
    margin-bottom: 20px;
}

.photozone-icon i {
    font-size: 2.5rem;
    color: #e67e22;
    background: #f8f9fa;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photozone-card h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.photozone-details {
    margin: 20px 0;
}

.photozone-details .detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
    padding: 5px 0;
    font-size: 0.9rem;
}

.photozone-details .detail i {
    color: #e67e22;
    width: 16px;
}

.ideal-for {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #34495e;
}

/* Pricing Page */
.pricing-section {
    padding: 80px 0;
}

.pricing-toggle {
    text-align: center;
    margin-bottom: 50px;
}

.toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 15px;
}

.toggle-label {
    font-weight: 600;
    color: #34495e;
}

.toggle-input {
    display: none;
}

.toggle-switch {
    width: 50px;
    height: 25px;
    background: #bdc3c7;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-switch:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-input:checked + .toggle-switch {
    background: #e67e22;
}

.toggle-input:checked + .toggle-switch:before {
    transform: translateX(25px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    border: 3px solid #e67e22;
    transform: scale(1.05);
}

.card-header {
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
}

.card-header i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.card-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price-display {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e67e22;
}

.price-display small {
    font-size: 1rem;
    color: #7f8c8d;
}

.card-body {
    padding: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.features-list li i {
    color: #2ecc71;
    width: 16px;
}

.card-footer {
    padding: 0 30px 30px;
}

.price-button {
    display: block;
    width: 100%;
    text-align: center;
    background: #e67e22;
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.price-button:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Equipment Pricing - Missing Styles */
.equipment-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.equipment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.item-name {
    color: #34495e;
    font-weight: 500;
}

.item-price {
    color: #e67e22;
    font-weight: 600;
}

/* Services Pricing - Missing Styles */
.services-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.service-info i {
    font-size: 2rem;
    color: #e67e22;
    width: 50px;
    flex-shrink: 0;
}

.service-text {
    flex: 1;
}

.service-info h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.service-price span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e67e22;
}

/* Info Cards - Missing Styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    color: #34495e;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

/* Studio Features - Missing Styles */
.studio-features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Legal Document Additional Styles */
.legal-document h2 i {
    color: #e67e22;
    margin-right: 10px;
}

.legal-document h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
    margin: 20px 0;
    line-height: 1.8;
}

.contact-box strong {
    color: #2c3e50;
}

.contact-box i {
    color: #e67e22;
    width: 20px;
    margin-right: 10px;
}

.last-updated {
    background: #e8f5e8;
    color: #27ae60;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: inline-block;
}

.last-updated i {
    margin-right: 8px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2 i {
    color: #e67e22;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

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

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

.cta-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-content h2 i {
    color: #e67e22;
}

.cta-button {
    background: #e67e22;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: #e67e22;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #e67e22;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

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

/* Pricing Info Section - Missing Styles */
.pricing-info {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Contact CTA - Missing Styles */
.contact-cta {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    padding: 80px 0;
    color: white;
}

.contact-cta h2 {
    color: white !important;
    margin-bottom: 20px;
}

.contact-cta p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-cta a {
    color: inherit;
    text-decoration: none;
}

/* Booking CTA - Missing Styles */
.booking-cta {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    padding: 80px 0;
    color: white;
}

.booking-cta h2 {
    color: white !important;
}

.booking-cta p {
    color: white;
}

/* Photozones Section - Missing Styles */
.photozones-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Additional Services Section - Missing Styles */

/* Equipment Category Styles */
.equipment-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Specs Display */
.specs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.specs i {
    color: #e67e22;
}

/* Responsive Enhancements for New Pages */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .service-icon {
        margin-bottom: 20px;
    }
    
    .service-item.reverse {
        margin: 40px -10px;
        padding: 40px 10px;
    }
    
    .studios-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .equipment-categories {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .toggle-container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .service-content {
        gap: 15px;
    }
    
    .service-icon i {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .studio-card {
        padding: 20px;
    }
    
    .pricing-card .card-body {
        padding: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .contact-box {
        padding: 15px;
    }
}