/* Sections - Dark Tech Theme (Orizon Inspired) */

/* Partners Section */
.partners-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.partners-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: white;
    margin: 0;
    padding: 0;
}

.partners-carousel {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 50s linear infinite;
    width: max-content;
    padding: 0;
    margin-left: 0;
    will-change: transform;
}



.partner-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-2px);
}

.partner-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.partner-icon i {
    font-size: 1.75rem;
}

.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: none;
    letter-spacing: 0.025em;
}

/* Carousel Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    background: var(--background);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.about-text .lead {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #e5e7eb;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.7;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Services Section */
.services {
    background: var(--background);
    position: relative;
    padding: 6rem 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

/* OUR APPROACH Section */
.our-approach {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.approach-left {
    max-width: 400px;
}

.approach-left h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.approach-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.approach-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.approach-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.approach-btn i {
    transition: transform 0.3s ease;
}

.approach-btn:hover i {
    transform: translateX(3px);
}

.approach-description {
    color: #d1d5db;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.approach-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 1px;
}

/* Services Interactive Section */
.services-interactive {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Services Navigation */
.services-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.service-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.service-nav-item.active {
    background: rgba(255, 107, 53, 0.1);
}

.service-nav-indicator {
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.service-nav-item.active .service-nav-indicator {
    height: 24px;
}

.service-nav-item span {
    color: #9ca3af;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-nav-item.active span {
    color: var(--primary);
}

/* Service Details */
.service-details {
    position: relative;
    min-height: 400px;
}

.service-detail {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-detail.active {
    display: block;
}

.service-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.service-number {
    color: #6b7280;
    font-weight: 600;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.service-icon-graphic {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-graphic i {
    font-size: 4rem;
    color: var(--primary);
}

/* Custom UI/UX Design Icon */
.pen-nib {
    width: 60px;
    height: 80px;
    background: white;
    border-radius: 50% 50% 0 0;
    position: relative;
    transform: rotate(-15deg);
}

.pen-tip {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.design-path {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.path-line {
    width: 80px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transform: rotate(15deg);
}

.path-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: -3px;
}

.path-dot.left {
    left: -5px;
}

.path-dot.right {
    right: -5px;
}

.path-x {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    left: -10px;
    top: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: bold;
}

.service-description {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 1rem;
}

.service-features i {
    color: var(--primary);
    font-size: 0.875rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact {
    background: var(--background);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-form {
    position: relative;
    z-index: 3;
}

.contact-info {
    max-width: 400px;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info .lead {
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 800px;
    width: 100%;
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    pointer-events: none;
    user-select: none;
}

.form-input,
.form-textarea {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: text;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    user-select: text;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-large {
    width: 100%;
    max-width: 500px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header .lead {
    margin-bottom: 0;
}

/* Responsive Design pentru Sections */
/* Mobile Contact Section - default hidden on desktop */
.mobile-contact-section {
    display: none;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-text h2 {
        font-size: 2.75rem;
    }
    
    .about-text .lead {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
    
    .about-image {
        padding: 0 1.5rem;
    }
    
    .about-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .contact-info {
        padding: 0 2rem;
    }
    
    .contact-info h2 {
        font-size: 2.25rem;
    }
    
    .contact-info .lead {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 0 2rem;
        display: flex;
    }
    
    .contact-form h3 {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .partners-carousel {
        gap: 3rem;
        animation-duration: 30s;
        padding: 0;
    }
    
    .partner-item {
        padding: 0.75rem 0;
    }
    
    .partner-icon {
        width: 28px;
        height: 28px;
    }
    
    .partner-icon i {
        font-size: 1.5rem;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-text {
        text-align: center;
        max-width: 100%;
    }
    
    .about-text h2 {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .about-text .lead {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .about-image {
        display: none;
    }
    
    /* Services Responsive */
    .our-approach {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .approach-left {
        max-width: 100%;
    }
    
    .approach-left h2 {
        font-size: 2.5rem;
    }
    
    .services-interactive {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-nav {
        order: 2;
    }
    
    .service-details {
        order: 1;
        text-align: center;
    }
    
    .service-header h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .service-description {
        text-align: center;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 4rem;
        align-items: center;
        text-align: center;
        padding: 2rem 0;
    }
    
    .contact-info {
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    
    .contact-info .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        color: #e5e7eb;
        max-width: 500px;
        text-align: center;
    }
    
    .contact-info-item {
        margin-bottom: 0;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .contact-info-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 107, 53, 0.3);
    }
    
    .contact-info-item i {
        font-size: 1.5rem;
        margin-bottom: 0;
        color: var(--primary);
        background: rgba(255, 107, 53, 0.1);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(255, 107, 53, 0.2);
        flex-shrink: 0;
    }
    
    .contact-info-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .contact-info-content p {
        font-size: 0.95rem;
        color: #d1d5db;
        text-align: center;
        line-height: 1.5;
        margin: 0;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        display: none;
    }
    
    .contact-form h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
        border-radius: 6px;
        max-width: 400px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.75rem;
        max-width: 400px;
    }
    
    /* Mobile Contact Section - Hidden on Tablet */
    .mobile-contact-section {
        display: none;
        padding: 0;
    }
    
    .mobile-contact-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mobile-contact-content .lead {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .mobile-contact-form-container {
        padding: 2.5rem;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .partners-carousel {
        gap: 2rem;
        animation-duration: 25s;
        padding: 0;
    }
    
    .partner-item {
        padding: 0.5rem 0;
    }
    
    .partner-icon {
        width: 24px;
        height: 24px;
    }
    
    .partner-icon i {
        font-size: 1.25rem;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-text .lead {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .about-image {
        display: none;
    }
    
    /* Services Mobile */
    .approach-left h2 {
        font-size: 2rem;
    }
    
    .approach-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .services-interactive {
        gap: 2rem;
    }
    
    .service-nav-item {
        padding: 1rem;
    }
    
    .service-header h3 {
        font-size: 1.75rem;
    }
    
    .service-icon-graphic {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-graphic i {
        font-size: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
        align-items: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .contact-info {
        padding: 0 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-info .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.25rem;
        margin-bottom: 0;
        max-width: 350px;
        gap: 1.25rem;
    }
    
    .contact-info-item i {
        font-size: 1.25rem;
        width: 45px;
        height: 45px;
    }
    
    .contact-info-content h4 {
        font-size: 0.95rem;
    }
    
    .contact-info-content p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 0 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        display: none;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
        max-width: 350px;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        max-width: 350px;
    }
    
    /* Mobile Contact Section - Show on Mobile */
    .mobile-contact-section {
        display: block;
        background: var(--background);
        padding: 3rem 0;
        position: relative;
    }
    
    .mobile-contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: 1;
    }
    
    .mobile-contact-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .mobile-contact-content h2 {
        font-size: 2rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .mobile-contact-content .lead {
        font-size: 1rem;
        color: #d1d5db;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .mobile-contact-form-container {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }
    
    .mobile-contact-form-container .form-group {
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .mobile-contact-form-container .form-label {
        color: #e5e7eb;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .mobile-contact-form-container .form-input,
    .mobile-contact-form-container .form-textarea {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        color: white;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }
    
    .mobile-contact-form-container .form-input:focus,
    .mobile-contact-form-container .form-textarea:focus {
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    }
    
    .mobile-contact-form-container .form-input::placeholder,
    .mobile-contact-form-container .form-textarea::placeholder {
        color: #9ca3af;
        opacity: 0.7;
    }
    
    .mobile-contact-form-container .btn-large {
        background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    
    .mobile-contact-form-container .btn-large:hover {
        background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    
    /* Privacy Policy Mobile Styles */
    .privacy-content {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        line-height: 1.6 !important;
    }
    
    .privacy-section {
        margin-bottom: 2rem !important;
        padding: 1.5rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
        color: var(--primary) !important;
        font-weight: 600 !important;
    }
    
    .privacy-section p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: #d1d5db !important;
        margin-bottom: 0.75rem !important;
    }
    
    .privacy-section ul {
        margin-left: 1rem !important;
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .privacy-section li {
        font-size: 0.9rem !important;
        color: #d1d5db !important;
        margin-bottom: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    
    /* Contact info box styling for mobile */
    .privacy-section div[style*="background: var(--background-light)"] {
        background: rgba(255, 107, 53, 0.1) !important;
        padding: 1.25rem !important;
        border-radius: 8px !important;
        margin-top: 1rem !important;
        border: 1px solid rgba(255, 107, 53, 0.2) !important;
    }
    
    .privacy-section div[style*="background: var(--background-light)"] p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .privacy-section div[style*="background: var(--background-light)"] a {
        color: var(--primary) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }
    
    /* Header adjustments for privacy page */
    .section[style*="padding: 120px"] {
        padding: 80px 0 40px !important;
    }
    
    .section-header {
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .section-header h1 {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
        color: white !important;
    }
    
    .section-header .lead {
        font-size: 1rem !important;
        color: #9ca3af !important;
    }
    
    /* Back button mobile styling */
    .privacy-section.text-center {
        margin-top: 2rem !important;
        padding: 1rem !important;
    }
    
    .privacy-section .btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
    }
}

/* Privacy Policy Extra Small Mobile Styles */
@media (max-width: 480px) {
    .privacy-content {
        padding: 0 0.75rem !important;
    }
    
    .privacy-section {
        padding: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .privacy-section h2 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    .privacy-section p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .privacy-section li {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .section-header h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    .section-header .lead {
        font-size: 0.95rem !important;
    }
    
    /* Contact box adjustments for very small screens */
    .privacy-section div[style*="background: var(--background-light)"] {
        padding: 1rem !important;
    }
    
    .privacy-section div[style*="background: var(--background-light)"] p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    /* Header padding for small screens */
    .section[style*="padding: 120px"] {
        padding: 60px 0 30px !important;
    }
    
    .section-header {
        padding: 0 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
}
