:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #eee;
    --light-bg: #0f3460;
    --border-color: #533483;
    --card-bg: #162447;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
}

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

.main-header {
    background: rgba(26, 26, 46, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navigation a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.navigation a:hover,
.navigation a.active {
    color: var(--accent-color);
}

.hero-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(26,26,46,0.7), rgba(22,33,62,0.8));
    z-index: 1;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-banner h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-banner p {
    font-size: 22px;
    margin-bottom: 35px;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: #d13850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233,69,96,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #fff;
}

.services-overview, .equipment-showcase, .why-choose, .testimonials, .cta-section {
    padding: 80px 0;
}

.services-overview h2, .equipment-showcase h2, .why-choose h2, .testimonials h2, .cta-section h2, .history-today h2, .statistics-chart h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #fff;
}

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

.service-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(83,52,131,0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.2);
}

.service-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.equipment-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(83,52,131,0.3);
}

.equipment-item:hover {
    transform: scale(1.03);
}

.equipment-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.equipment-item h3 {
    padding: 20px;
    color: var(--accent-color);
    font-size: 22px;
}

.equipment-item p {
    padding: 0 20px 20px;
    color: #ccc;
}

.history-today {
    background: var(--light-bg);
    padding: 60px 0;
    margin: 60px 0;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.history-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.history-icon {
    font-size: 36px;
}

.history-date h3 {
    font-size: 28px;
    color: var(--accent-color);
}

.history-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}

.statistics-chart {
    padding: 60px 0;
}

.chart-wrapper {
    max-width: 900px;
    margin: 40px auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(83,52,131,0.3);
}

.chart-description {
    text-align: center;
    margin-top: 20px;
    color: #bbb;
    font-style: italic;
}

.benefits-list {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(83,52,131,0.3);
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.benefit-item p {
    color: #ccc;
}

.testimonials {
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-card h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #aaa;
    font-size: 14px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color), #d13850);
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary-large {
    background: #fff;
    color: var(--accent-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.main-footer {
    background: var(--primary-color);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(83,52,131,0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.company-reg {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(83,52,131,0.3);
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.4);
    z-index: 10000;
    display: none;
    border-top: 2px solid var(--accent-color);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 22px;
}

.cookie-content p {
    margin-bottom: 18px;
    line-height: 1.6;
    color: #ddd;
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.accept-all {
    background: var(--accent-color);
    color: #fff;
}

.accept-all:hover {
    background: #d13850;
}

.necessary-only {
    background: var(--light-bg);
    color: #fff;
}

.necessary-only:hover {
    background: #0a2540;
}

.decline {
    background: transparent;
    color: #bbb;
    border: 1px solid #666;
}

.decline:hover {
    background: rgba(255,255,255,0.1);
}

.page-hero {
    background: linear-gradient(135deg, var(--light-bg), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.page-hero p {
    font-size: 20px;
    color: #ddd;
}

.company-story {
    padding: 80px 0;
}

.company-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--accent-color);
    text-align: left;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ddd;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.our-values {
    background: var(--light-bg);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(83,52,131,0.3);
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    color: #ccc;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #ddd;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.team-member {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(83,52,131,0.3);
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 10px;
    color: var(--accent-color);
    font-size: 22px;
}

.member-role {
    color: #aaa;
    font-weight: 600;
    padding: 0 20px 10px;
    font-size: 14px;
}

.team-member p:last-child {
    padding: 0 20px 25px;
    color: #ccc;
    line-height: 1.6;
}

.company-stats {
    background: linear-gradient(135deg, var(--accent-color), #d13850);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-item p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.service-detail {
    padding: 80px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ddd;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #ccc;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.pricing-info {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 20px;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.process-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(83,52,131,0.3);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    line-height: 60px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
}

.process-step p {
    color: #ccc;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--card-bg);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    color: #ccc;
    line-height: 1.7;
}

.equipment-categories {
    padding: 60px 0;
}

.alt-bg {
    background: var(--light-bg);
}

.equipment-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.equipment-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(83,52,131,0.3);
}

.equipment-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.equipment-card h3 {
    padding: 20px 20px 15px;
    color: var(--accent-color);
    font-size: 22px;
}

.equipment-card ul {
    list-style: none;
    padding: 0 20px 25px;
}

.equipment-card ul li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(83,52,131,0.2);
}

.package-deals {
    background: var(--light-bg);
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.package-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(83,52,131,0.3);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(233,69,96,0.2);
}

.package-card h3 {
    color: var(--accent-color);
    font-size: 26px;
    margin-bottom: 15px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.package-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-includes li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #ccc;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.btn-package {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: #d13850;
    transform: scale(1.05);
}

.rental-info {
    padding: 80px 0;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.info-block h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.info-block p {
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-posts {
    padding: 80px 0;
}

.posts-grid {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    border: 1px solid rgba(83,52,131,0.3);
    transition: transform 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.blog-category {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.blog-content h2 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--accent-color);
}

.blog-meta {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-content > p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d13850;
}

.blog-newsletter {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.blog-newsletter h2 {
    margin-bottom: 15px;
}

.blog-newsletter p {
    margin-bottom: 30px;
    color: #ddd;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(83,52,131,0.5);
    border-radius: 6px;
    background: var(--card-bg);
    color: #fff;
    font-size: 16px;
}

.btn-newsletter {
    padding: 14px 30px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: #d13850;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 32px;
}

.info-item h3 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.info-item p {
    color: #ccc;
    line-height: 1.6;
}

.info-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
}

.company-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(83,52,131,0.3);
}

.company-details p {
    color: #aaa;
    margin-bottom: 8px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(83,52,131,0.3);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(83,52,131,0.5);
    border-radius: 6px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d13850;
}

.map-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

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

.modal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
    border: 2px solid var(--accent-color);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #aaa;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 25px;
    color: #ddd;
    line-height: 1.6;
}

.btn-modal-close {
    padding: 12px 30px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: #d13850;
}

.blog-post {
    background: var(--primary-color);
}

.post-header {
    background: var(--light-bg);
    padding: 60px 0 40px;
}

.back-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #d13850;
}

.post-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.post-meta {
    color: #aaa;
    font-size: 15px;
}

.post-meta span {
    margin-right: 20px;
}

.post-author {
    color: var(--accent-color);
}

.post-featured-image {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.post-featured-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: -80px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.post-content {
    padding: 80px 0;
}

.post-content .container {
    max-width: 800px;
}

.lead {
    font-size: 22px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 500;
}

.post-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--accent-color);
}

.post-content h3 {
    font-size: 26px;
    margin: 30px 0 15px;
    color: #fff;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ccc;
    font-size: 17px;
}

.post-footer {
    background: var(--light-bg);
    padding: 40px 0;
}

.post-footer .container {
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-tags {
    display: flex;
    gap: 10px;
    align-items: center;
}

.post-tags span {
    color: #aaa;
}

.post-tags a {
    background: var(--card-bg);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.post-tags a:hover {
    background: var(--accent-color);
    color: #fff;
}

.post-share {
    display: flex;
    gap: 15px;
    align-items: center;
}

.post-share span {
    color: #aaa;
}

.share-btn {
    padding: 8px 18px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #d13850;
}

.related-posts {
    padding: 80px 0;
    background: var(--secondary-color);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

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

.related-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(83,52,131,0.3);
    transition: transform 0.3s ease;
}

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

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 20px;
    font-size: 18px;
}

.related-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card h3 a:hover {
    color: var(--accent-color);
}

@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-banner h1 {
        font-size: 40px;
    }
    
    .company-story .container,
    .service-block,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-card img {
        height: 250px;
    }
    
    .blog-content {
        padding: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-banner h1 {
        font-size: 32px;
    }
    
    .services-grid,
    .equipment-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 32px;
    }
    
    .post-featured-image img {
        margin-top: 0;
        height: 300px;
    }
    
    .post-footer .container {
        flex-direction: column;
        gap: 20px;
    }
}
