.zy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.zy-hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}
.zy-hero p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}
.zy-services {
    padding: 60px 0;
    background: #f8f9fa;
}
.zy-services h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.zy-service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.zy-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zy-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.zy-service-card .icon {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 15px;
}
.zy-service-card h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}
.zy-service-card p {
    color: #666;
    line-height: 1.6;
}
.zy-stats {
    padding: 50px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}
.zy-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.zy-stat-item {
    padding: 20px;
}
.zy-stat-item .number {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
}
.zy-stat-item .label {
    font-size: 1em;
    opacity: 0.9;
}
.zy-contact-section {
    padding: 60px 0;
    background: #fff;
}
.zy-contact-section h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.zy-contact-grid {
    display: flex;
    gap: 40px;
}
.zy-contact-info {
    flex: 1;
}
.zy-contact-info ul {
    list-style: none;
    padding: 0;
}
.zy-contact-info ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.zy-contact-info ul li i {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.2em;
}
.zy-contact-form {
    flex: 1;
}
.zy-contact-form input,
.zy-contact-form textarea,
.zy-contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.zy-contact-form input:focus,
.zy-contact-form textarea:focus,
.zy-contact-form select:focus {
    border-color: #667eea;
    outline: none;
}
.zy-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.zy-contact-form input[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.zy-contact-form input[type="submit"]:hover {
    opacity: 0.9;
}
.zy-service-detail {
    padding: 60px 0;
    background: #fff;
}
.zy-service-detail h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.zy-detail-item {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}
.zy-detail-item h4 {
    font-size: 1.5em;
    color: #667eea;
    margin-bottom: 20px;
}
.zy-detail-item ul {
    list-style: none;
    padding: 0;
}
.zy-detail-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}
.zy-detail-item ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #667eea;
}
.zy-process {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}
.zy-process h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #fff;
}
.zy-process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.zy-process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.zy-process-step .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    color: #667eea;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 15px;
}
.zy-process-step h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.zy-process-step p {
    font-size: 0.9em;
    opacity: 0.9;
    line-height: 1.5;
}
.zy-cases {
    padding: 60px 0;
    background: #f8f9fa;
}
.zy-cases h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.zy-case-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.zy-case-card h4 {
    font-size: 1.3em;
    color: #667eea;
    margin-bottom: 15px;
}
.zy-case-card .case-content {
    margin-bottom: 20px;
}
.zy-case-card .case-content h5 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}
.zy-case-card .case-content ul {
    list-style: none;
    padding: 0;
}
.zy-case-card .case-content ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}
.zy-case-card .case-content ul li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #667eea;
}
.zy-case-card .case-results {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}
.zy-case-card .case-results h5 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}
.zy-case-card .case-results ul {
    list-style: none;
    padding: 0;
}
.zy-case-card .case-results ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #667eea;
    font-weight: 600;
}
.zy-case-card .case-results ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #667eea;
}
.zy-advantages {
    padding: 60px 0;
    background: #fff;
}
.zy-advantages h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.zy-advantage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.zy-advantage-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    width: calc(33.333% - 20px);
    text-align: center;
}
.zy-advantage-item i {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 15px;
}
.zy-advantage-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}
.zy-advantage-item p {
    color: #666;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .zy-service-card {
        width: 100%;
    }
    .zy-contact-grid {
        flex-direction: column;
    }
    .zy-hero h2 {
        font-size: 1.8em;
    }
    .zy-process-steps {
        flex-direction: column;
    }
    .zy-advantage-item {
        width: 100%;
    }
}
