.ct-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.ct-hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}
.ct-hero p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}
.ct-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.ct-info-section h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.ct-info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.ct-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.ct-info-card .icon {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 15px;
}
.ct-info-card h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}
.ct-info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 5px;
}
.ct-services-section {
    padding: 60px 0;
    background: #fff;
}
.ct-services-section h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.ct-service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.ct-service-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    width: calc(33.333% - 17px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.ct-service-card:hover {
    transform: translateY(-3px);
}
.ct-service-card h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #667eea;
}
.ct-service-card h4 i {
    margin-right: 8px;
}
.ct-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 13px;
}
.ct-service-card p strong {
    color: #333;
}
.ct-contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.ct-contact-section h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}
.ct-contact-grid {
    display: flex;
    gap: 40px;
}
.ct-contact-info {
    flex: 1;
}
.ct-contact-info ul {
    list-style: none;
    padding: 0;
}
.ct-contact-info ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.ct-contact-info ul li i {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.2em;
}
.ct-contact-form {
    flex: 1;
}
.ct-contact-form input,
.ct-contact-form textarea,
.ct-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;
}
.ct-contact-form input:focus,
.ct-contact-form textarea:focus,
.ct-contact-form select:focus {
    border-color: #667eea;
    outline: none;
}
.ct-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.ct-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;
}
.ct-contact-form input[type="submit"]:hover {
    opacity: 0.9;
}
@media (max-width: 768px) {
    .ct-service-card {
        width: 100%;
    }
    .ct-contact-grid {
        flex-direction: column;
    }
    .ct-hero h2 {
        font-size: 1.8em;
    }
}
