/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Services Hero Section */
.services-hero {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.services-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-content {
    height: 100%;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.service-description {
    color: #333333;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Main Service Card */
.main-service {
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px solid #000000;
}

.service-content-main {
    text-align: center;
}

.main-service-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.main-service-description {
    color: #cccccc;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Techniques Card */
.techniques-card {
    background: #f8f9fa;
    border: 2px solid #000000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
}

.techniques-content {
    width: 100%;
}

.techniques-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.technique-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.technique-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.75rem;
}

.technique-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.technique-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.technique-desc {
    color: #666666;
    font-size: 0.85rem;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.process-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.process-step p {
    color: #333333;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.service-card,
.process-step {
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-title {
        font-size: 3rem;
    }
    
    .main-service-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .main-service-title {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 0;
    }
    
    .services-section {
        padding: 2rem 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .main-service-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .process-section {
        padding: 2rem 0;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}