/* DuraWell About Us Styles - Enhanced & Premium */
:root {
    --primary-blue: #00b2d8;
    --secondary-orange: #f7a81b;
    --dw-blue: #00a0d2;
    --dw-blue-dark: #0088b3;
    --dw-blue-light: #33c5f5;
    --dw-orange: #f9b233;
    --dw-orange-dark: #e09a20;
    --dw-orange-light: #ffc966;
    --dw-light-gray: #f8f8f8;
    --dw-dark-gray: #333;
    --dw-white: #ffffff;
    --dw-gradient: linear-gradient(135deg, var(--dw-blue), var(--dw-orange));
    --dw-gradient-reverse: linear-gradient(135deg, var(--dw-orange), var(--dw-blue));
    --dw-shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.08);
    --dw-shadow-md: 0 15px 35px rgba(0, 0, 0, 0.12);
    --dw-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    margin: 0;
    font-family: 'Poppins', 'Arial', sans-serif;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%230099cc" opacity="0.05"/><path d="M20 70 L70 20 L120 70 L70 120 Z" fill="%23ffa500" opacity="0.05"/><path d="M30 40 L40 30 L50 40 L40 50 Z" fill="%230099cc" opacity="0.03"/><path d="M60 70 L70 60 L80 70 L70 80 Z" fill="%23ffa500" opacity="0.03"/></svg>'),
    linear-gradient(170deg, rgba(0,153,204,0.05) 0%, rgba(255,165,0,0.05) 100%);
    line-height: 1.6;
    color: #444;
}

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

.dw-page-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -0.5px;
}

.dw-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background: var(--secondary-orange);
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(0, 160, 210, 0.3);
}

.dw-page-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    background: var(--dw-gradient);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.2;
}

.dw-about-section {
    margin-bottom: 70px;
    position: relative;
    padding: 40px;
    background-color: var(--dw-white);
    border-radius: 18px;
    box-shadow: var(--dw-shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.dw-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--dw-gradient);
    z-index: 1;
}

.dw-about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 100 L100 0 L100 100 Z" fill="%230099cc" opacity="0.05"/></svg>');
    z-index: 0;
}

.dw-about-section:hover {
    transform: translateY(-8px);
    box-shadow: var(--dw-shadow-lg);
}

.dw-section-title {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 4px solid var(--dw-orange);
    display: inline-block;
    position: relative;
    letter-spacing: -0.5px;
}

.dw-section-title i {
    color: var(--dw-blue);
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.dw-about-section:hover .dw-section-title i {
    transform: scale(1.2) rotate(10deg);
}

.dw-section-content {
    font-size: 17px;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.dw-hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
    position: relative;
}

.dw-hero-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
    width: calc(50% - 25px); /* Set to 50% width minus half the gap */
}

.dw-hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--dw-shadow-lg);
    position: relative;
    width: calc(50% - 25px); /* Set to 50% width minus half the gap */
}

.dw-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 160, 210, 0.2) 0%, rgba(249, 178, 51, 0.2) 100%);
    z-index: 1;
}

.dw-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.dw-hero-image:hover img {
    transform: scale(1.05);
}

.dw-hero-title {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dw-hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--secondary-orange);
    border-radius: 3px;
}

.dw-hero-text {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--dw-blue-light);
}

/* Mission & Vision */
.dw-mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.dw-mission, .dw-vision {
    flex: 1;
    min-width: 300px;
    padding: 50px 40px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--dw-shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.dw-mission {
    background: linear-gradient(145deg, var(--dw-blue), var(--dw-blue-dark));
    color: var(--dw-white);
}

.dw-vision {
    background: linear-gradient(145deg, var(--dw-orange), var(--dw-orange-dark));
    color: var(--dw-white);
}

.dw-mission::before, .dw-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    transition: transform 0.6s ease;
}

.dw-mission:hover::before, .dw-vision:hover::before {
    transform: scale(1.2);
}

.dw-mission:hover, .dw-vision:hover {
    transform: translateY(-12px);
    box-shadow: var(--dw-shadow-lg);
}

.dw-mission h3, .dw-vision h3 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.dw-mission h3 i, .dw-vision h3 i {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dw-mission:hover h3 i, .dw-vision:hover h3 i {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Values */
.dw-values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.dw-value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--dw-white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: var(--dw-shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dw-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--dw-blue);
    transition: all 0.3s ease;
}

.dw-value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 6px;
    background: var(--dw-orange);
    transition: all 0.3s ease;
    z-index: -1;
}

.dw-value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--dw-shadow-md);
}

.dw-value-card:hover::before {
    background: var(--dw-gradient);
    width: 10px;
}

.dw-value-card:hover::after {
    width: 100%;
}

.dw-value-card h3 {
    color: var(--dw-dark-gray);
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    position: relative;
}

.dw-value-card h3 i {
    color: var(--dw-white);
    font-size: 28px;
    transition: all 0.3s ease;
    background: var(--dw-blue);
    padding: 12px;
    border-radius: 12px;
}

.dw-value-card:hover h3 i {
    background: var(--dw-gradient);
    transform: scale(1.2) rotate(10deg);
    border-radius: 50%;
}

/* Journey Timeline */
.dw-timeline-container {
    position: relative;
    padding: 40px 0 80px;
    overflow-x: auto;
}

.dw-timeline {
    display: flex;
    position: relative;
    min-width: 900px;
}

.dw-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--dw-gradient);
    border-radius: 3px;
    z-index: 1;
    box-shadow: 0 2px 15px rgba(0, 160, 210, 0.3);
}

.dw-timeline-item {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 0 15px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dw-timeline-item:hover {
    transform: translateY(-20px);
}

.dw-timeline-year {
    width: 100px;
    height: 100px;
    background: var(--dw-gradient);
    color: var(--dw-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 26px;
    margin: 0 auto 60px;
    box-shadow: var(--dw-shadow-md);
    border: 6px solid var(--dw-white);
    z-index: 3;
    position: relative;
    transition: all 0.3s ease;
}

.dw-timeline-item:hover .dw-timeline-year {
    transform: scale(1.1);
    box-shadow: var(--dw-shadow-lg);
    background: var(--dw-gradient-reverse);
}

.dw-timeline-content {
    background-color: var(--dw-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--dw-shadow-sm);
    text-align: center;
    border-top: 6px solid var(--dw-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dw-timeline-content::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(249, 178, 51, 0.05) 0%, rgba(0, 160, 210, 0.05) 70%);
    transition: all 0.6s ease;
    z-index: 0;
}

.dw-timeline-content:hover {
    box-shadow: var(--dw-shadow-md);
    border-top: 6px solid var(--dw-orange);
    transform: scale(1.05);
}

.dw-timeline-content:hover::after {
    top: -50%;
    left: -50%;
}

.dw-timeline-content h3 {
    color: var(--dw-blue);
    margin-top: 0;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.dw-timeline-content p {
    margin-bottom: 0;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Team Section */
.dw-management-team {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 40px;
    justify-content: center;
}

.dw-team-member {
    width: 280px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.dw-team-member::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 10px;
    background: var(--dw-gradient);
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
}

.dw-team-member:hover {
    transform: translateY(-15px);
}

.dw-team-member:hover::before {
    opacity: 0.3;
    width: 80%;
}

.dw-team-photo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background-color: var(--dw-light-gray);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 6px solid var(--dw-white);
    box-shadow: var(--dw-shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.dw-team-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 160, 210, 0.2) 0%, rgba(249, 178, 51, 0.2) 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.dw-team-member:hover .dw-team-photo {
    border-radius: 50%;
    transform: scale(1.05);
}

.dw-team-member:hover .dw-team-photo::after {
    opacity: 1;
}

.dw-team-photo img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
    transition: transform 0.6s ease;
}

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

.dw-team-member h4 {
    color: var(--dw-dark-gray);
    margin: 15px 0 8px;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.dw-team-member h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--dw-gradient);
    transition: all 0.3s ease;
}

.dw-team-member:hover h4::after {
    width: 100%;
}

.dw-team-role {
    color: var(--dw-blue);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 17px;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: rgba(0, 160, 210, 0.1);
    transition: all 0.3s ease;
}

.dw-team-member:hover .dw-team-role {
    background: var(--dw-gradient);
    color: var(--dw-white);
    box-shadow: 0 5px 15px rgba(0, 160, 210, 0.3);
}

.dw-team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.dw-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--dw-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--dw-dark-gray);
}

.dw-social-icon:hover {
    background: var(--dw-gradient);
    color: var(--dw-white);
    transform: translateY(-5px) rotate(10deg);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 160, 210, 0.3);
}

/* Quality */
.dw-quality-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.dw-quality-item {
    flex: 1;
    min-width: 230px;
    padding: 30px;
    background-color: var(--dw-white);
    border-radius: 15px;
    box-shadow: var(--dw-shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dw-quality-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dw-blue) 0%, var(--dw-blue-light) 100%);
    transition: all 0.3s ease;
}

.dw-quality-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--dw-blue-light) transparent transparent;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.dw-quality-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--dw-shadow-md);
}

.dw-quality-item:hover::before {
    height: 8px;
    background: var(--dw-gradient);
}

.dw-quality-item:hover::after {
    border-width: 0 60px 60px 0;
    opacity: 0.2;
    border-color: transparent var(--dw-orange) transparent transparent;
}

.dw-quality-item h4 {
    color: var(--dw-dark-gray);
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.dw-quality-item h4 i {
    color: var(--dw-white);
    font-size: 22px;
    background-color: var(--dw-blue);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dw-quality-item:hover h4 i {
    background: var(--dw-gradient);
    transform: rotate(10deg);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 160, 210, 0.3);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 160, 210, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 160, 210, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 160, 210, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.dw-about-section {
    animation: fadeIn 0.8s ease-out forwards;
}

.dw-about-section:nth-child(2) { animation-delay: 0.2s; }
.dw-about-section:nth-child(3) { animation-delay: 0.4s; }
.dw-about-section:nth-child(4) { animation-delay: 0.6s; }
.dw-about-section:nth-child(5) { animation-delay: 0.8s; }

.dw-mission .dw-section-title i, .dw-vision .dw-section-title i {
    animation: pulse 2s infinite;
}

.dw-timeline-year {
    animation: float 6s ease-in-out infinite;
}

/* Extra Design Elements */
.dw-water-drop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 800 800"><path d="M400 0 C400 0, 600 400, 400 800 C400 800, 200 400, 400 0" fill="none" stroke="%230099cc" stroke-width="1" opacity="0.05"/></svg>') no-repeat center center;
    background-size: contain;
}

.dw-curved-line {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="100" viewBox="0 0 1440 100"><path d="M0,50 C240,110 480,10 720,50 C960,90 1200,10 1440,50 L1440,100 L0,100 Z" fill="%23f9b233" opacity="0.05"/></svg>') no-repeat center bottom;
    background-size: cover;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .dw-page-title {
        font-size: 42px;
    }
    
    .dw-section-title {
        font-size: 32px;
    }
    
    .dw-about-section {
        padding: 35px;
    }
    
    .dw-hero-title {
        font-size: 36px;
    }
    
    .dw-hero-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .dw-page-title {
        font-size: 36px;
    }
    
    .dw-section-title {
        font-size: 28px;
    }
    
    .dw-hero-section {
        flex-direction: column;
    }
    
    /* Reorder elements for mobile - image first, then content */
    .dw-hero-section {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .dw-hero-content,
    .dw-hero-image {
        width: 100%; /* Full width on mobile */
    }
    
    .dw-mission, .dw-vision {
        padding: 35px;
    }
    
    .dw-mission h3, .dw-vision h3 {
        font-size: 26px;
    }
    
    .dw-timeline-item {
        min-width: 180px;
    }
    
    .dw-timeline-year {
        width: 85px;
        height: 85px;
        font-size: 22px;
    }
    
    .dw-team-photo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .dw-page-title {
        font-size: 30px;
    }
    
    .dw-section-title {
        font-size: 24px;
    }
    
    .dw-about-section {
        padding: 25px;
    }
    
    .dw-hero-title {
        font-size: 28px;
    }
    
    .dw-hero-text {
        font-size: 16px;
    }
    
    .dw-mission, .dw-vision {
        padding: 25px;
    }
    
    .dw-mission h3, .dw-vision h3 {
        font-size: 22px;
    }
    
    .dw-mission h3 i, .dw-vision h3 i {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .dw-value-card {
        padding: 30px 25px;
    }
    
    .dw-value-card h3 {
        font-size: 22px;
    }
    
    .dw-value-card h3 i {
        font-size: 24px;
        padding: 10px;
    }
    
    .dw-timeline-year {
        width: 70px;
        height: 70px;
        font-size: 18px;
        border-width: 4px;
    }
    
    .dw-timeline-content {
        padding: 20px;
    }
    
    .dw-timeline-content h3 {
        font-size: 18px;
    }
    
    .dw-timeline-content p {
        font-size: 14px;
    }
    
    .dw-team-photo {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    
    .dw-team-member h4 {
        font-size: 20px;
    }
    
    .dw-team-role {
        font-size: 15px;
    }
    
    .dw-social-icon {
        width: 35px;
        height: 35px;
    }
    
    .dw-quality-item {
        padding: 25px 20px;
    }
    
    .dw-quality-item h4 {
        font-size: 18px;
    }
    
    .dw-quality-item h4 i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .dw-about-section,
    .dw-about-section:hover,
    .dw-mission:hover,
    .dw-vision:hover,
    .dw-value-card:hover,
    .dw-timeline-item:hover,
    .dw-team-member:hover,
    .dw-quality-item:hover,
    .dw-social-icon:hover,
    .dw-timeline-year,
    .dw-mission .dw-section-title i,
    .dw-vision .dw-section-title i {
        animation: none;
        transition: none;
        transform: none;
    }
}

/* Print styles */
@media print {
    body {
        background: none;
        color: #000;
    }
    
    .dw-about-container {
        max-width: 100%;
        padding: 0;
    }
    
    .dw-about-section,
    .dw-mission,
    .dw-vision,
    .dw-value-card,
    .dw-timeline-content,
    .dw-quality-item {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .dw-page-title::after,
    .dw-page-title::before,
    .dw-about-section::before,
    .dw-about-section::after,
    .dw-mission::before,
    .dw-vision::before,
    .dw-value-card::before,
    .dw-value-card::after,
    .dw-timeline::before,
    .dw-timeline-content::after,
    .dw-quality-item::before,
    .dw-quality-item::after,
    .dw-water-drop,
    .dw-curved-line {
        display: none;
    }
    
    .dw-timeline {
        display: block;
        min-width: auto;
    }
    
    .dw-timeline-item {
        page-break-inside: avoid;
        margin-bottom: 30px;
    }
    
    .dw-team-photo {
        border: 1px solid #ddd;
    }
    
    .dw-team-socials {
        display: none;
    }
}