@import url('common.css');

body {
    padding-top: 100px; 
}

main {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.hero-text {
    width: 60%;
}

.hero-image {
    width: 35%;
    text-align: right;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

h1 {
    font-size: 2.5em;
    color: #5d4d7b;
    text-transform: uppercase;
    font-family: 'YesevaOne-Regular';
    margin-bottom: 20px;
}

h1-1 {
    font-size: 1em;
    color: #5d4d7b;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
    text-align: left;
}

.intro {
    font-family: 'ABeeZee-Regular';
    font-size: 1em;
    color: #5d4d7b;
    line-height: 1.5;
    margin-bottom: 25px;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.intro:hover {
    transform: scale(1.03);
}

h2 {
    font-size: 1.8em;
    color: #5d4d7b;
    text-transform: uppercase;
    font-family: 'YesevaOne-Regular';
    margin-top: 50px;
    margin-bottom: 25px;
}

.section-content {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    color: #5d4d7b;
    line-height: 1.5;
    margin-bottom: 25px;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.section-content:hover {
    transform: scale(1.03);
}

.value-item,
.quality-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.value-icon,
.quality-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.value-icon img,
.quality-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight {
    font-weight: bold;
    color: #5d4d7b;
}

.section-content p em {
    font-style: italic;
    color: #5d4d7b;
}

.section-content ul {
    list-style-type: none;
    padding-left: 2em;
}

.section-content ul li {
    padding-left: 1em;
    text-indent: 0em;
    position: relative;
}

.section-content ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #5d4d7b;
}

/* CliftonStrengths Section */
.strengths-section {
    padding: 50px 0;
}

.strength-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.strength-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.strength-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    color: #5d4d7b;
    line-height: 1.5;
}

.strength-text .highlight {
    font-weight: bold;
    font-size: 1.2em;
    color: #5d4d7b;
}

/* Title matching the other sections */
.strengths-section h2 {
    font-size: 1.8em;
    color: #5d4d7b;
    text-transform: uppercase;
    font-family: 'YesevaOne-Regular';
    margin-bottom: 25px;
    text-align: center;  /* Align the title to the center as in the previous section */
}

/* Section content hover effect */
.strength-item:hover {
    transform: scale(1.03);
    transition: transform 0.3s;
}
/* Download button styling */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: #5d4d7b;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #463f5a;
}

/* Mobile responsiveness for strengths */
@media (max-width: 768px) {
    .strength-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .strength-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
    }

    .hero-text, .hero-image {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        margin-top: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    .intro {
        font-size: 0.9em;
    }

    h2 {
        font-size: 1.5em;
    }

    .section-content {
        font-size: 0.9em;
    }

    .value-item, .quality-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-icon, .quality-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
