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

:root {
    --primary-color: #d21e75;
    --bg-dark: #22030b;
    --bg-light: #fff5f8;
    --text-dark: #3a2228;
    --text-white: #ffffff;
    --text-muted: #88656e;
    --border-color: #ffd8e4;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--text-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

.site-header {
    padding: 20px 0;
    background-color: var(--text-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #b0145e;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-text {
    background: none;
    color: var(--primary-color);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bg-dark);
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 3, 11, 0.85) 0%, rgba(34, 3, 11, 0.45) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.quick-links-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.quick-cards {
    background-color: var(--text-white);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.section-label {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.quick-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    transition: padding-left 0.3s ease;
}

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

.quick-card-item:hover {
    padding-left: 8px;
    color: var(--primary-color);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.highlight-section {
    padding: 100px 0;
}

.highlight-section.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-section.bg-dark .section-title {
    color: var(--text-white);
}

.text-block p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.highlight-section.bg-dark .text-block p {
    color: rgba(255, 255, 255, 0.75);
}

.img-rounded {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.features-list {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.section-lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-muted);
}

.numbers-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number-card {
    text-align: center;
    padding: 20px;
}

.number-num {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.number-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-block-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--text-white);
}

.cta-block-section h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-block-section p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.site-footer {
    padding: 80px 0 40px 0;
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col a {
    color: var(--text-white);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    text-align: center;
}

.subpage-hero {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.about-story-section {
    padding: 100px 0;
}

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

.team-member {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.services-grid-section {
    padding: 100px 0;
}

.service-card-desc {
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s;
}

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

.service-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-card-desc h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card-desc p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.text-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-section {
    padding: 100px 0;
}

.price-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.06);
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
}

.price-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

.blog-list-section {
    padding: 100px 0;
}

.blog-post-card {
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.blog-card-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-card-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.article-content-section {
    padding: 80px 0;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin: 40px 0 20px 0;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    margin: 40px 0;
    font-size: 22px;
    color: var(--bg-dark);
}

.cta-panel {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    margin-top: 50px;
    text-align: center;
}

.cta-panel h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-panel p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.contact-details-section {
    padding: 100px 0;
}

.contact-info h3, .contact-form-block h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 25px;
}

.p-info {
    font-size: 16px;
    margin-bottom: 20px;
}

.map-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.site-form {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 15px;
}

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

.checkbox-group input {
    margin-top: 4px;
}

.error-msg {
    color: red;
    font-size: 12px;
    display: none;
    margin-top: 5px;
}

.legal-content-section {
    padding: 80px 0;
}

.html-legal {
    max-width: 900px;
    margin: 0 auto;
}

.html-legal h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 35px 0 15px 0;
}

.html-legal p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table th, .legal-table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

.legal-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
}

.thankyou-section {
    padding: 100px 0;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #d4edda;
    color: #155724;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin: 0 auto 30px auto;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

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

.cookie-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.cookie-settings-form {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-settings-form label {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

@media (max-width: 991px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .r-reverse {
        flex-direction: column-reverse;
    }
}