/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Illustration Area */
.illustration-container {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.main-image {
    max-width: 100%;
    height: auto;
}

.floating-icons .icon {
    position: absolute;
    font-size: 24px;
}

.cap-icon {
    top: 10%;
    left: 10%;
}

.plane-icon {
    top: 20%;
    right: 20%;
}

.book-icon {
    top: 40%;
    right: 10%;
}

.decoration-elements .circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #f9a826;
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
}

.decoration-elements .square {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #10b981;
    transform: rotate(45deg);
    bottom: 30%;
    right: 20%;
}

/* Text Content */
.text-content {
    flex: 1;
}

.about-label {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-header p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
}

/* Button */
.know-more-btn {
    padding: 12px 24px;
    background-color: transparent;
    color: #10b981;
    border: 1px solid #10b981;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background-color: #10b981;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .illustration-container {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex-direction: column;
    }
    
    .icon-circle {
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: 24px;
    }
}