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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 20px;
    color: #000;
}


.outer-card {
    background-color: #cbbcc1;
    border-radius: 40px;
    width: 100%;
    max-width: 800px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
	background: url(../img/bg.png) cover center no-repeat;
}


header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}


.gears-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    max-width: 500px;
    
}


.gear-link {
    background-color: #2b1d1d;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-main {
    background-color: #2b1d1d;
    color: #fff;
    width: 110px;
    height: 130px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
}


.banner {
    background-color: #2b1d1d;
    color: #fff;
    padding: 8px 30px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

.inner-content {
    background-color: #e4dddf;
    border-radius: 30px;
    padding: 50px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 900;
    transform: scaleY(1.2);
    margin-top: 10px;
}


.text-wrapper {
    width: 100%;
    text-align: left;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 600;
    
}

a.email-link {
    color: #1a3597;
    text-decoration: none;
    font-weight: 700;
}

a.email-link:hover {
    text-decoration: underline;
}


.dog-illustration {
    margin-top: 40px;
    width: 200px;
    height: 180px;
    background-color: #999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
}

.footer-star {
    color: #d11e28;
    font-size: 45px;
    margin-top: 15px;
}