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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-color: #ff4757;
    --secondary-color: #2c3e50;
    --dark-blue: #34495e;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --accent-red: #e74c3c;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 30px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 5px 0 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo .dot {
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* nav Link About */
.nav-link1 {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}


.nav-link1:hover::after,
.nav-link1.active::after {
    width: 100%;
}
/* --End Nav Link About*/

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(39, 36, 36, 0.9), rgba(255, 71, 87, 0.9)), url('img/hero2.jpg');
}

.hero-bg-2 {
    background: linear-gradient(rgba(39, 36, 36, 0.9), rgba(255, 71, 87, 0.9)), url('img/hero1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    color: var(--white);
    margin-top: 40px;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
    display: block;
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.section-subtitle1 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

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

.service-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 71, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon {
    border-color: var(--white);
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--secondary-color) 50%, var(--secondary-color) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;

}

.about-image {
    position: relative;
}

.about-bg {
    width: 100%;
    height: 600px;
    background:url('img/founder.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-top: 40px;
}

.about-text {
    color: var(--white);
}

.about-text .section-subtitle::before {
    left: -60px;
}

.about-text .section-title {
    color: var(--white);
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.contact-brand h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-brand .dot {
    color: var(--primary-color);
}

.contact-brand p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details .phone {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-details .highlight {
    color: var(--primary-color);
}

.contact-details .email {
    color: rgba(255, 255, 255, 0.8);
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-color);
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

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

.newsletter-form .btn {
    padding: 12px 20px;
    font-size: 12px;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 90px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.whatsapp-float:hover {
  background: #128c7e;
  color: #fff;
  text-decoration: none;
}
.whatsapp-float,
.whatsapp-float:visited,
.whatsapp-float:active {
  text-decoration: none !important;
  outline: none;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--accent-red);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-nav {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.about-text,
.contact-brand {
    animation: fadeInUp 0.6s ease-out;
}


/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="none" width="1200" height="400"/><circle fill="rgba(255,255,255,0.1)" cx="200" cy="100" r="80"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="300" r="120"/><circle fill="rgba(255,255,255,0.08)" cx="1000" cy="150" r="60"/></svg>');
    background-size: cover;
    background-position: center;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.separator {
    margin: 0 10px;
}

.current {
    color: rgba(255, 255, 255, 0.6);
}

/* About Introduction */
.about-intro {
    padding: 100px 0;
    background-color: var(--white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    
}

.about-intro-text .section-subtitle::before {
    left: -60px;
}

.intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.intro-image-bg {
    width: 100%;
    height: 600px;
    background: url('img/About.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: 40px;

}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.card-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.card-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Our Values */
.our-values {
    padding: 100px 0;
    background-color: var(--white);
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 28px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Our Team */
.our-team {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.member-photo-2 {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.member-photo-3 {
    background: linear-gradient(135deg, var(--accent-red), var(--dark-blue));
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 71, 87, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-photo {
    transform: scale(1.1);
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.member-info {
    padding: 30px 25px;
    text-align: center;
}

.member-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.member-position {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.why-choose-text {
    color: var(--white);
}

.why-choose-text .section-subtitle::before {
    left: -60px;
}

.why-choose-text .section-title {
    color: var(--white);
    margin-bottom: 40px;
}

.features-list {
    margin-bottom: 40px;
}

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

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.choose-image-bg {
    width: 100%;
    height: 500px;
    background: url('img/about2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-top: 40px;;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .about-intro,
    .mission-vision,
    .our-values,
    .our-team,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }
    
    .member-info {
        padding: 25px 20px;
    }
}

/* Template Page Styles */
.main-content {
    padding: 100px 0;
    background-color: var(--white);
}

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

.content-grid {
    margin-top: 60px;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-text p {
    margin-bottom: 25px;
}

.additional-content {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.additional-content h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.additional-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Template responsive styles */
@media (max-width: 768px) {
    .main-content,
    .additional-content {
        padding: 60px 0;
    }
    
    .content-wrapper,
    .additional-content-wrapper {
        padding: 0 20px;
    }
    
    .additional-content h3 {
        font-size: 28px;
    }
}
