/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #f7f7f7;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    color: #FFD400;
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
}

/* Values Section */
.values {
    background: #fff;
    padding: 60px 0;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Value item styles */
.value-item {
    margin-bottom: 15px;
}

.value-title {
    background: #FFD400;
    color: black;
    padding: 20px;
    text-align: left;
    width: 100%;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-title i {
    font-size: 1.5rem;
}

.value-content {
    display: none;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.value-title:focus {
    outline: none;
}

/* Accordion Toggle Effect */
.value-item.active .value-content {
    display: block;
}

.value-title:after {
    content: '\002B';
    font-size: 1.5rem;
    float: right;
}

.value-item.active .value-title:after {
    content: '\2212'; /* Minus sign */
}

.value-item button:active {
    transform: translateY(2px);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem; /* Slightly smaller font for smaller screens */
    }

    .hero p {
        font-size: 1rem;
        padding: 10px;
    }

    .value-title {
        font-size: 1rem; /* Smaller font size for mobile */
        padding: 15px; /* Adjust padding */
    }

    .value-content {
        font-size: 0.9rem; /* Smaller text for better readability */
        padding: 10px; /* Reduced padding */
    }

    .container {
        width: 100%;
        padding: 0 20px; /* 20px padding on mobile */
    }

    .value-title i {
        font-size: 1.3rem; /* Slightly smaller icons */
    }
}

/* Extra Small Screen Adjustments */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem; /* Even smaller font size */
    }

    .hero p {
        font-size: 0.9rem;
    }

    .value-title {
        font-size: 1rem;
        padding: 12px; /* Even smaller padding */
        color: black;
    }

    .value-content {
        font-size: 0.85rem; /* More compact font for very small screens */
        padding: 8px; /* Reduced padding for better content fit */
    }
}
