      body {
        font-family: 'Nunito Sans', sans-serif;
        height: 100vh;
        overflow: hidden;
      }
      
      .loading-container {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fadeIn 1.5s ease-in forwards;
      }
      
      .contact-info {
        padding: 2rem;
        border-right: 2px solid #9b8579;
        animation: slideInLeft 1.2s ease-out forwards;
      }
      
      .logo-container {
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: slideInRight 1.2s ease-out forwards;
      }
      span{
        font-size: 19px;
      }
      .logo {
        max-width: 300px;
        filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
      }
      
      .logo-pulse {
        animation: pulse 3s infinite;
      }
      
      .loading-bar {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 4px;
        background-color: #e9e0d1;
        overflow: hidden;
      }
      
      .loading-progress {
        height: 100%;
        width: 0;
        background-color: #9b8579;
        animation: loading 3s ease-in-out forwards;
      }
      
      h1 {
        color: #e8652d;
        font-weight: 400;
        margin-bottom: 1.5rem;
      }
      
      .contact-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
      }
      
      .contact-item i {
        margin-right: 10px;
        color: #e8652d;
      }
      a {
        text-decoration: none;
        color: black;
      }
      .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-left: 10px;
        }

        .social-links i {
        transition: transform 0.3s ease;
        font-size: 2rem;
        }

        .social-links i:hover {
        transform: scale(1.2);
        color: #513c2c;
        }
      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }
      
      @keyframes slideInLeft {
        from { transform: translateX(-50px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
      }
      
      @keyframes slideInRight {
        from { transform: translateX(50px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
      }
      
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
      }
      
      @keyframes loading {
        0% { width: 0; }
        100% { width: 100%; }
      }