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

html,
body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
}

body{
    background:#F4F4F4;
    font-family:'Sole Repsol Text', Arial, sans-serif;
    color:#002B49;
    min-height:100vh;
}

.container{
    position:relative;
    min-height:100vh;
    width:100%;
    padding:140px 88px 40px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.content{
    position:relative;
    z-index:1;
    flex:1;
}

.illustration{
    display:block;
    width:104px;
    height:104px;
    margin-bottom:40px;
}

h1{
    width:100%;
    max-width:715px;
    font-family:'Sole Repsol Display', Arial, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:48px;
    line-height:60px;
    color:#001E37;
    margin-bottom:20px;
}

p{
    width:100%;
    max-width:715px;
    min-height:48px;
    font-family:'Sole Repsol Text', Arial, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:16px;
    line-height:24px;
    color:#43637D;
    display:flex;
    align-items:center;
    margin-bottom:28px;
}

.contact-button{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    font-family:'Sole Repsol Text', Arial, sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:20px;
    color:#002B49;
    border:1px solid #002B49;
    padding:12px 24px;
    border-radius:24px;
    transition:background 0.2s ease;
}

.contact-button:hover{
    background:rgba(0,43,73,0.05);
}

footer{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:60px;
}

.social-links{
    display:flex;
    align-items:center;
    gap:24px;
}

.social-links a{
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:0;
}

.social-links img{
    width:18px;
    height:18px;
}

.logo{
    width:110px;
    height:auto;
}

.background-bubble{
    position:absolute;
    top:-250px;
    right:-250px;
    width:540px;
    height:540px;
    background:url('assets/240404_Symbol_02.png');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    pointer-events:none;
    z-index:0;
}

@media (max-width: 720px){
    .container{
        padding:40px 24px;
    }

    .illustration{
        width:80px;
        height:80px;
    }

    h1{
        max-width:320px;
        font-size:28px;
        line-height:36px;
    }

    p{
        max-width:320px;
        min-height:auto;
        font-size:14px;
        line-height:20px;
        display:block;
    }

    footer{
        flex-direction:column;
        align-items:flex-start;
        gap:32px;
    }

    .logo{
        width:80px;
    }

    .background-bubble{
        width:280px;
        height:280px;
        top:-120px;
        right:-120px;
    }
}