.home-container {
    text-align: center;
    padding: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.home-header {
    margin-bottom: 3rem;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.pitch {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.home-cta {
    margin-top: 2rem;
}

.home-cta .btn {
    margin: 0 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section, .tasks-section {
    margin-bottom: 3rem;
    text-align: left;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.about-section h2, .tasks-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.task-accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.task-item {
    border-bottom: 1px solid #ddd;
}

.task-item:last-child {
    border-bottom: none;
}

.task-header {
    background-color: #fff;
    border: none;
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.task-header:hover {
    background-color: #f1f1f1;
}

.task-header .toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.task-header.active .toggle-icon {
    transform: rotate(45deg);
}

.task-content {
    padding: 0 1.5rem;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.task-content p {
    margin: 1rem 0;
}

.task-content .btn {
    margin-bottom: 1rem;
}