/* ==========================================================================
   DESIGN SYSTEM - THE VELVET GATHERING
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors derived from reference image */
    --primary-accent: #ff5a00;
    --primary-accent-hover: #e04f00;
    --dark-bg: #121212;
    --dark-card-bg: #1a1a1a;
    --dark-footer-bg: #0d0d0d;
    --light-bg: #f9f9f9;
    
    --text-light: #ffffff;
    --text-muted: #a5a5a5;
    --text-dark: #1f1f1f;
    --border-color: #2a2a2a;
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Border Radius & Shadows */
    --border-radius: 4px;
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.5);
    --shadow-dramatic: 0 10px 30px rgba(255, 90, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base resets */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 0;
}

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

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-accent-hover);
    text-decoration: none;
}

/* Layout Utilities */
.section-padding {
    padding: 90px 0;
}

.bg-dark-accent {
    background-color: var(--dark-card-bg);
}

/* Navigation */
.navbar-custom {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar-custom .navbar-brand span {
    color: var(--primary-accent);
}

.navbar-custom .nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 18px;
    background-color: var(--primary-accent);
    transition: var(--transition);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-item.active .nav-link::after {
    width: calc(100% - 36px);
}

.navbar-custom .nav-link:hover {
    color: var(--primary-accent) !important;
}

/* Buttons */
.btn-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-custom-primary {
    background-color: var(--primary-accent);
    color: var(--text-light);
}

.btn-custom-primary:hover {
    background-color: var(--primary-accent-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 0, 0.4);
}

.btn-custom-secondary {
    background-color: transparent;
    border-color: var(--primary-accent);
    color: var(--text-light);
}

.btn-custom-secondary:hover {
    background-color: var(--primary-accent);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 0, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0 140px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.95) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-accent);
    padding-bottom: 5px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary-accent);
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-muted);
}

/* Slanted Banner Section */
.slanted-banner {
    position: relative;
    background-color: var(--primary-accent);
    padding: 25px 0;
    transform: skewY(-1.5deg);
    margin-top: -40px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slanted-banner-content {
    transform: skewY(1.5deg);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.slanted-banner-item {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px;
}

.slanted-banner-item i {
    font-size: 24px;
}

/* About Section */
.about-section {
    position: relative;
    z-index: 2;
}

.section-tagline {
    color: var(--primary-accent);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 38px;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-accent);
    margin-top: 15px;
}

.about-features {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.about-features li {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.about-features li i {
    color: var(--primary-accent);
    font-size: 18px;
}

/* Image Grid matching reference design */
.about-image-wrapper {
    position: relative;
}

.about-img-main {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-subtle);
}

.about-img-main img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-accent);
    color: var(--text-light);
    padding: 20px;
    text-align: center;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4);
    z-index: 5;
}

.experience-badge h3 {
    font-size: 32px;
    margin-bottom: 0;
    line-height: 1;
}

.experience-badge p {
    font-size: 12px;
    margin-bottom: 0;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.about-img-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-thumb {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.about-img-thumb img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.about-img-thumb:hover img {
    transform: scale(1.05);
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, #181818 0%, #0c0c0c 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
}

.stat-icon {
    font-size: 36px;
    color: var(--primary-accent);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    color: var(--primary-accent);
}

.stat-label {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Services / Features alternating cards */
.service-row-card {
    background-color: var(--dark-card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 40px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-row-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dramatic);
    border-color: rgba(255, 90, 0, 0.3);
}

.service-row-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-row-icon {
    font-size: 40px;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.service-row-image {
    min-height: 350px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.service-row-card:hover .service-row-image {
    transform: scale(1.02);
}

/* Team Section */
.team-card {
    background-color: var(--dark-card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic);
    border-color: rgba(255, 90, 0, 0.4);
}

.team-img-wrapper {
    overflow: hidden;
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    filter: grayscale(100%);
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    padding: 25px 20px;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-accent);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: var(--text-muted);
    font-size: 16px;
}

.team-social a:hover {
    color: var(--primary-accent);
}

/* Pricing Section */
.pricing-card {
    background-color: var(--dark-card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    margin-bottom: 30px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic);
    border-color: rgba(255, 90, 0, 0.4);
}

.pricing-card.popular {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-dramatic);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-accent);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-header {
    margin-bottom: 25px;
}

.price-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-accent);
    line-height: 1;
}

.price-amount span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.price-features li i {
    color: var(--primary-accent);
}

.price-features li.disabled {
    color: #555555;
    text-decoration: line-through;
}

.price-features li.disabled i {
    color: #555555;
}

/* Testimonials Section */
.testimonial-card {
    background-color: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 90, 0, 0.3);
    box-shadow: var(--shadow-dramatic);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-accent);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    margin-bottom: 0;
    color: var(--primary-accent);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Call to Action Banner */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--primary-accent);
}

/* Blog / Articles Section */
.blog-card {
    background-color: var(--dark-card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic);
    border-color: rgba(255, 90, 0, 0.4);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-accent);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 13px;
    padding: 5px 12px;
    border-radius: var(--border-radius);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-title a {
    color: var(--text-light);
}

.blog-title a:hover {
    color: var(--primary-accent);
}

.blog-more {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-accent);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text h2 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 28px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.newsletter-form {
    flex-grow: 1;
    max-width: 500px;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 20px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: var(--border-radius);
    width: 100%;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--text-light);
    outline: none;
}

.newsletter-form button {
    background-color: var(--dark-bg);
    color: var(--text-light);
    border: none;
    padding: 12px 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Footer styling */
.footer-main {
    background-color: var(--dark-footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-accent);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-accent);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.footer-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-info-list li {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-info-list li i {
    color: var(--primary-accent);
    font-size: 16px;
    margin-top: 4px;
}

.footer-bottom {
    background-color: #060606;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-accent);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(20, 20, 20, 0.98);
    border-top: 2px solid var(--primary-accent);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    display: none; /* Controlled by JS */
}

.cookie-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 75%;
}

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

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

.cookie-btn {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background-color: var(--primary-accent);
    color: var(--text-light);
}

.cookie-btn-accept:hover {
    background-color: var(--primary-accent-hover);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--text-light);
}

/* Form Styling */
.form-control-custom {
    background-color: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: var(--border-radius);
    width: 100%;
    transition: var(--transition);
}

.form-control-custom:focus {
    background-color: rgba(255, 90, 0, 0.02);
    border-color: var(--primary-accent);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.15);
}

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

.form-group-custom label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

/* Thank you page styles */
.thank-card-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.thank-card {
    background-color: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-dramatic);
}

.thank-icon {
    font-size: 64px;
    color: var(--primary-accent);
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-custom {
        background-color: var(--dark-bg);
    }
    
    .navbar-custom .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid var(--border-color);
        padding-top: 15px;
    }
    
    .navbar-custom .nav-link::after {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cookie-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-text {
        max-width: 100%;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .service-row-image {
        min-height: 250px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .slanted-banner-item {
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .about-img-thumbs {
        gap: 10px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}
