/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    color: #000;
    background-color: #ffffff;
    font-size: 16px;
}

/* Navigation */
.main-nav {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 12px;
    color: rgb(48, 66, 84);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: rgb(20, 40, 60);
    border-bottom-color: rgb(48, 66, 84);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: rgb(48, 66, 84);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header */
.header {
    min-height: 70vh;
    max-height: 70vh;
    position: relative;
    overflow: hidden;
    background: #87CEEB; /* Fallback color */
}

.header-container {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 70vh;
    min-height: 500px;
}

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

.header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 80px 60px 60px 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 20px;
    left: 60px;
}

.header-logo {
    width: 120px;
    height: 120px;
    background: transparent;
    padding: 8px;
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.company-name {
    font-size: 42px;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    max-width: 500px;
    margin-left: 60px;
    gap: 40px;
}

.hero-title {
    font-size: clamp(52px, 7vw, 84px);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin: 20px 0;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 32px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: none;
}

.contact-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Main Content */
.main-content {
    background: #000000;
    margin-top: 0;
}

section {
    width: 100vw;
    position: relative;
    background-color: #000000;
    padding: 91px;
}

section:nth-child(even) {
    background: #ffffff;
    color: #000000;
}

section:nth-child(odd) {
    background: #000000;
    color: #ffffff;
}

/* Legal background section specific styling */
.legal-background {
    background: #ffffff !important;
    color: #000000 !important;
}

.legal-background h2,
.legal-background p {
    color: #000000 !important;
}

/* Personal scope section - black background */
.personal-scope {
    background: #000000 !important;
    color: #ffffff !important;
}

.personal-scope h2,
.personal-scope p {
    color: #ffffff !important;
}

/* Services section specific styling */
.services {
    background: #ffffff !important;
    color: #000000 !important;
}

.services h2,
.services p {
    color: #000000 !important;
}

/* Other services section specific styling */
.other-services {
    background: #ffffff !important;
    color: #000000 !important;
}

.other-services h2,
.other-services p,
.other-services li {
    color: #000000 !important;
}

.other-services ul {
    padding-left: 20px;
    margin: 20px 0;
}

.other-services li {
    font-size: 21.33px;
    line-height: 31px;
    margin-bottom: 15px;
    list-style-type: disc;
}

h2 {
    font-size: 48px;
    font-weight: 400;
    color: rgb(245, 244, 243);
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: -0.05em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 55px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    font-size: 32px;
    font-weight: 400;
    color: rgb(245, 244, 243);
    margin: 50px 0 30px 0;
    text-align: left;
    letter-spacing: -0.042em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 36px;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.text-content {
    margin-bottom: 40px;
}

.text-content p {
    font-size: 21.33px;
    line-height: 31px;
    margin-bottom: 31px;
    color: rgb(255, 255, 255);
    text-align: left;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

.image-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.section-image {
    width: 100%;
    height: 200px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #444;
}

.legal-details {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0;
}

.legal-details p {
    font-size: 21.33px;
    line-height: 31px;
    margin-bottom: 31px;
    color: rgb(255, 255, 255);
    text-align: left;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 2px solid rgb(255, 255, 255);
}

.btn-primary:hover {
    background: rgb(240, 240, 240);
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 0, 0);
}

.btn-secondary:hover {
    background: rgb(40, 40, 40);
    color: rgb(255, 255, 255);
    border-color: rgb(40, 40, 40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button {
    text-align: center;
    margin: 31px 0;
}

.link-text {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    font-weight: 400;
    font-size: 21.33px;
    text-transform: uppercase;
    letter-spacing: 0em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 31px;
    transition: all 0.3s ease;
}

.link-text:hover {
    color: rgb(200, 200, 200);
}

.info-link {
    text-align: left;
    margin: 31px 0;
}

/* Service Packages */
.service-packages {
    background: #000000 !important;
    padding: 91px !important;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: #555;
}

.package-card h3 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 55px;
}

.package-card.gold h3 {
    color: rgb(245, 244, 243);
}

.package-card.platina h3 {
    color: rgb(245, 244, 243);
}

.packages-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.packages-cta-btn {
    font-size: 18px !important;
    padding: 20px 40px !important;
    display: inline-block;
}

/* Contract documents section */
.contract-documents {
    background: #000000;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.contract-documents p {
    font-size: 21.33px;
    line-height: 31px;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.price {
    text-align: left;
    margin-top: auto;
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price .monthly {
    display: block;
    font-size: 21.33px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    line-height: 31px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

.price .yearly {
    display: block;
    font-size: 21.33px;
    color: rgb(255, 255, 255);
    line-height: 31px;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

.package-description {
    margin-bottom: 30px;
    text-align: left;
    flex: 1;
}

.package-description p {
    font-size: 21.33px;
    line-height: 31px;
    color: rgb(255, 255, 255);
    margin-bottom: 31px;
    text-align: left;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

.package-features {
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.package-features li {
    font-size: 24px;
    line-height: 33px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

.package-description ul {
    margin-top: 31px;
    padding-left: 30px;
}

.package-description li {
    font-size: 21.33px;
    line-height: 31px;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

.contract-documents {
    text-align: left;
    margin-top: 40px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: none;
}

.contract-documents p {
    font-size: 21.33px;
    line-height: 31px;
    color: rgb(255, 255, 255);
    margin-bottom: 31px;
    text-align: left;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0em;
}

/* Footer */
.footer {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

/* Ensure footer breaks out of any container constraints */
@media (min-width: 1201px) {
    .footer {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: none !important;
    }
    
    .footer-container {
        width: 100% !important;
        max-width: none !important;
    }
    
    .footer-bg {
        width: 100% !important;
    }
    
    .footer-bg-img {
        width: 100% !important;
        min-width: 100vw;
    }
}

.footer-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

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

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.8) 0%, rgba(176, 224, 230, 0.8) 50%, rgba(135, 206, 235, 0.8) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
}

.footer-top {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

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

.footer-logo {
    width: 90px;
    height: 90px;
    background: transparent;
    padding: 8px;
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-company-name {
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
    flex: 1;
}

.footer-column h4 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-column p {
    font-size: 18px;
    line-height: 28px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-left span,
.footer-bottom-left a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-bottom-left a:hover {
    text-decoration: underline;
}

/* Hide hamburger on large screens */
@media (min-width: 1451px) {
    .hamburger {
        display: none !important;
    }
}

/* Responsive Design - Sidebar Navigation */
@media (max-width: 1450px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: rgb(245, 244, 243);
        flex-direction: column;
        transition: right 0.3s ease;
        box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(48, 66, 84, 0.1);
    }
    
    .nav-menu a {
        padding: 20px 30px;
        text-align: left;
        border-bottom: none;
        display: block;
    }
    
    /* Sidebar overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        flex-wrap: wrap;
        padding: 10px;
    }
    
    .nav-menu a {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .header-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .header-content {
        align-items: center;
    }
    
    .header-image {
        min-height: 400px;
        order: -1;
    }
    
    section {
        padding: 80px 30px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .text-content {
        padding-right: 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer {
        padding: 100px 30px 50px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(48, 66, 84, 0.1);
    }
    
    .nav-menu a {
        padding: 15px 20px;
        text-align: center;
    }
    
    .header {
        min-height: 70vh;
        max-height: 70vh;
    }
    
    .header-container {
        min-height: 70vh;
        max-height: 70vh;
    }
    
    .header-content {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        gap: 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .company-name {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .header-logo {
        width: 50px;
        height: 50px;
    }
    
    .contact-btn {
        padding: 12px 26px;
        font-size: 13px;
    }
    
    section {
        padding: 40px 20px;
    }
    
    h2 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 30px;
    }
    
    .text-content p,
    .legal-details p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 30px 0;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-card h3 {
        font-size: 32px;
        line-height: 38px;
    }
    
    .price .monthly,
    .price .yearly {
        font-size: 18px;
        line-height: 26px;
    }
    
    .package-description p,
    .package-description li {
        font-size: 18px;
        line-height: 26px;
    }
    
    .service-packages {
        padding: 40px 20px !important;
    }
    
    .contract-documents {
        margin-top: 30px;
    }
    
    .contract-documents p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .footer {
        padding: 40px 20px;
    }
    
    .footer-overlay {
        padding: 40px 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .contact-section p,
    .legal-links a,
    .powered-by {
        font-size: 18px;
        line-height: 26px;
    }
    
    .footer-bottom h4 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 35vh;
        min-height: 250px;
    }
    
    .header-overlay {
        padding: 15px 20px;
    }
    
    .contact-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero {
        padding: 40px 15px 60px 15px;
    }
    
    .logo-container {
        gap: 20px;
    }
    
    section {
        padding: 50px 15px;
    }
    
    .section-content {
        gap: 40px;
    }
    
    .text-content p,
    .legal-details p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .image-section {
        padding: 25px 20px;
    }
    
    .section-image {
        height: 150px;
        font-size: 14px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .packages-grid {
        gap: 40px;
        margin: 40px 0;
    }
    
    .package-card {
        padding: 40px 25px;
    }
    
    .price {
        padding: 25px 20px;
    }
    
    .price .yearly {
        font-size: 16px;
    }
    
    .package-description p {
        font-size: 18px;
    }
    
    .package-description li {
        font-size: 16px;
    }
    
    .service-packages {
        padding: 60px 15px !important;
    }
    
    .contract-documents {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .contract-documents p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 60px 15px 30px 15px;
    }
    
    .footer-content {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .contact-section h4,
    .legal-info h4 {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .contact-section p {
        font-size: 18px;
    }
    
    .legal-links a {
        font-size: 18px;
    }
}

/* Additional Styling */
.services .section-content {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 1200px;
}

.other-services .content-block {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.other-services .content-block p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
    text-align: justify;
}

.other-services .content-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.other-services .content-block li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

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

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.link-text:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    .package-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    section {
        background: #fff !important;
    }
}

/* Enhanced text readability */
strong {
    font-weight: 700;
    color: #000;
}

/* Better spacing for content blocks */
.content-block ul {
    margin: 30px 0;
    padding-left: 35px;
}

.content-block li {
    margin-bottom: 15px;
}

/* Image placeholder styling */
.section-image::before {
    content: "Image placeholder";
    font-size: 16px;
    color: #999;
}