* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;
	
	 padding-top: 70px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    padding: 120px 0;
}

h1,h2,h3,h4 {

    line-height: 1.1;

    font-weight: 700;

    color: var(--secondary);
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--light-text);
}

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 30px;

    border-radius: 999px;

    background: var(--primary);

    color: white;

    transition: var(--transition);
}

.btn:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}

.card {

    background: white;

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition: var(--transition);
}

.card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}