:root {
    --primary-red: #E31837;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF5F5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

.heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.light-font-weight{
    font-weight: 400;
}

.empowering, .cool {
    color: var(--text-dark);
}

.kindness {
    color: var(--primary-red);
}

.description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: transform 0.2s ease;
    min-width: 200px;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.05);
}

.contact {
    margin-bottom: 2rem;
}

.contact h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.email {
    color: var(--text-dark);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
} 

.facebook-cl {
	background-color: #316FF6;
}
.linkedin-cl {
	background-color: #0077B5;
}
.instagram-cl {
	background: #833ab4;
  	background: linear-gradient(
    		to right,
    		#833ab4,#fd1d1d,#fcb045
	);
}
