/* Import Poppins font (already linked in HTML) */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}


:root{
    --primary-color:#E6DFDB;
    --secondary-color:#D3D3D3;
    --accent-color:#EC7529;
    --text-color:#403B3A;
    --black:#2C2626;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--primary-color);
}



h4 {
    font-size: 2rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

p{
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.primary__btn{
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 2.4rem;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.primary__btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(236, 117, 41, 0.2);
}

.primary__btn:active {
    transform: translateY(0);
}

.secondary__btn{
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1.2rem 2.4rem;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.secondary__btn:hover {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(236, 117, 41, 0.2);
}

.secondary__btn:active {
    transform: translateY(0);
}

.logo h4{
    margin: 0;
}

span{
    color: var(--accent-color);
    font-weight: 600;
    display: inline-block;
}

.section__header {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--black);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section__header span {
    color: var(--accent-color);
}

.section__header::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section__subheader {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}


.select{
    font-size: 1.3rem;
    color: var(--black);
    font-weight: 600;
}


