* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #0295F5 0%, #0130A9 100%);
}

.bg-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 70vh;
    opacity: 1;
    z-index: 1;
}

.bg-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    height: 4rem;
    width: auto;
}

.content-box {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    max-width: 42rem;
    width: 100%;
    margin: 0 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.white-box-graphic {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    z-index: 1;
}

.white-box-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-inner {
    position: relative;
    z-index: 10;
}

.header {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0142B7;
    text-align: center;
    margin-bottom: 2rem;
}

.main-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0142B7;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #d1d5db;
    margin-bottom: 2rem;
}

.phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.phone-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0142B7;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s ease;
}

.phone-number:hover {
    color: #768cc9ff;
}

.touch-icon {
    width: 2rem;
    height: 2rem;
    animation: pulse-touch 2s infinite ease-in-out;
}

@keyframes pulse-touch {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .header {
        font-size: 1.5rem;
    }
    
    .main-text {
        font-size: 1.125rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .logo {
        height: 3rem;
    }
    
    .bg-graphic {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .phone-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-number {
        font-size: 1.25rem;
    }
    
    .touch-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}