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

      :root {
        --navy: #001433;
        --pink: #ff709b;
        --light-pink: #ff709b;
        --white: #ffffff;
        --light-blue: #64ffda;
        --transition: all 0.4s ease;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background-color: var(--navy);
        color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* Action Buttons */
      .action-buttons {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(
          0,
          20,
          51,
          0.95
        ); /* navy bar with slight transparency */
        padding: 15px 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .action-btn {
        padding: 12px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        text-align: center;
        white-space: nowrap;
      }

      .donate-btn {
        background: linear-gradient(to right, var(--pink), var(--light-pink));
        color: var(--white);
      }

      .nav-btn {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.3);
      }

      .action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 112, 155, 0.6);
      }

      /* Parallax Background */
      .parallax {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
      }

      .parallax-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .layer-1 {
        background: linear-gradient(135deg, var(--navy) 0%, #061e44 100%);
      }

      .layer-2,
      .layer-3,
      .layer-4 {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
      }

      .layer-2 {
        background-image: radial-gradient(
          circle at 20% 30%,
          rgba(255, 45, 117, 0.1) 0px,
          transparent 5%
        );
        animation: float 15s infinite ease-in-out;
      }

      .layer-3 {
        background-image: radial-gradient(
          circle at 70% 80%,
          rgba(255, 90, 154, 0.15) 0px,
          transparent 8%
        );
        animation: float 12s infinite ease-in-out reverse;
      }

      .layer-4 {
        background-image: radial-gradient(
          circle at 40% 60%,
          rgba(255, 90, 154, 0.2) 0px,
          transparent 6%
        );
        animation: float 18s infinite ease-in-out;
      }

      .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, var(--pink), transparent);
        filter: blur(20px);
        opacity: 0.3;
        animation: pulse 8s infinite alternate;
      }

      /* Keyframe Animations */
      @keyframes float {
        0%,
        100% {
          transform: translate(0, 0);
        }
        25% {
          transform: translate(-10px, -10px);
        }
        50% {
          transform: translate(5px, 10px);
        }
        75% {
          transform: translate(10px, -5px);
        }
      }

      @keyframes pulse {
        0% {
          transform: scale(0.8);
          opacity: 0.2;
        }
        100% {
          transform: scale(1.2);
          opacity: 0.4;
        }
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Header Section */
      .header {
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
        min-height: 40vh;
      }

      .logo-container {
        margin-bottom: 2rem;
        animation: fadeIn 1.2s ease-out forwards;
      }

      .logo {
        max-width: 380px;
        height: auto;
        margin: 4rem 0 0 0;
        animation: floatLogo 4s ease-in-out infinite;
        border-radius: 0;
        border: none;
        background: none;
        box-shadow: none;
      }

      .logo img {
        width: 100%;
        height: auto;
        border-radius: 0;
        object-fit: contain;
        filter: drop-shadow(0 5px 15px rgba(255, 45, 117, 0.3));
      }

      @keyframes floatLogo {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      /* Support Page Styles */
      .support-container {
        max-width: 700px;
        margin: 0 auto 100px;
        padding: 2rem;
        background: rgba(25, 47, 79, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        border: 2px solid var(--pink);
        animation: fadeIn 1s ease-out forwards;
        position: relative;
        z-index: 5;
      }

      .support-header {
        text-align: center;
        margin-bottom: 2rem;
      }

      .support-header h1 {
        font-size: 2.5rem;
        color: var(--light-pink);
        margin-bottom: 0.5rem;
      }

      .support-header p {
        font-size: 1.2rem;
        opacity: 0.9;
      }

      .support-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .form-group label {
        font-weight: 600;
        font-size: 1.1rem;
      }

      .form-group input,
      .form-group textarea {
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        font-size: 1rem;
        transition: var(--transition);
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--pink);
        box-shadow: 0 0 0 2px rgba(255, 112, 155, 0.3);
      }

      .required::after {
        content: " *";
        color: var(--pink);
      }

      .support-options {
        margin: 1.5rem 0;
      }

      .support-options h3 {
        font-size: 1.3rem;
        color: var(--light-pink);
        margin-bottom: 1rem;
      }

      .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .checkbox-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
      }

      .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: var(--pink);
      }

      .checkbox-item label {
        font-size: 1.1rem;
        cursor: pointer;
      }

      .submit-btn {
        background: linear-gradient(to right, var(--pink), var(--light-pink));
        color: var(--white);
        border: none;
        padding: 15px 30px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: var(--transition);
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(255, 45, 117, 0.4);
      }

      .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 45, 117, 0.6);
      }

      /* Footer */
      footer {
        background: rgba(5, 15, 30, 0.9);
        padding: 4rem 2rem 2rem;
        text-align: center;
        position: relative;
        z-index: 5;
      }

      .footer-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .contact-info {
        margin-bottom: 2rem;
      }

      .contact-info p {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
      }

      .email-link {
        color: #ff709b;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
      }

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

      .copyright {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .support-container {
          margin: 0 20px 80px;
          padding: 1.5rem;
        }

        .support-header h1 {
          font-size: 2rem;
        }

        /* Mobile adjustments for action buttons */
        .action-buttons {
          top: 0;
          width: 100%;
          padding: 15px;
        }

        .action-btn {
          padding: 10px 18px;
          font-size: 0.9rem;
          flex: 1;
          max-width: 150px;
        }

        .logo {
          max-width: 250px;
        }
      }

      @media (max-width: 480px) {
        .support-header h1 {
          font-size: 1.8rem;
        }

        .support-header p {
          font-size: 1rem;
        }

        .form-group label {
          font-size: 1rem;
        }

        .submit-btn {
          padding: 12px 25px;
          font-size: 1rem;
        }

        /* Extra small device adjustments */
        .action-buttons {
          top: 10px;
          flex-wrap: wrap;
          gap: 10px;
        }

        .action-btn {
          padding: 8px 16px;
          font-size: 0.8rem;
          max-width: 140px;
          flex: 1 0 calc(50% - 10px);
        }

        .logo {
          max-width: 200px;
        }
      }

      @media (max-width: 360px) {
        .action-buttons {
          flex-direction: column;
          align-items: center;
        }

        .action-btn {
          max-width: 200px;
          width: 100%;
        }
      }
    


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

      :root {
        --navy: #001433;
        --pink: #ff709b;
        --light-pink: #ff709b;
        --white: #ffffff;
        --light-blue: #64ffda;
        --transition: all 0.4s ease;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background-color: var(--navy);
        color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* Action Buttons */
      .action-buttons {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(
          0,
          20,
          51,
          0.95
        ); /* navy bar with slight transparency */
        padding: 15px 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .action-btn {
        padding: 12px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        text-align: center;
        white-space: nowrap;
      }

      .donate-btn {
        background: linear-gradient(to right, var(--pink), var(--light-pink));
        color: var(--white);
      }

      .nav-btn {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.3);
      }

      

      .action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 112, 155, 0.6);
      }

      /* Parallax Background */
      .parallax {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
      }

      .parallax-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .layer-1 {
        background: linear-gradient(135deg, var(--navy) 0%, #061e44 100%);
      }

      .layer-2,
      .layer-3,
      .layer-4 {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
      }

      .layer-2 {
        background-image: radial-gradient(
          circle at 20% 30%,
          rgba(255, 45, 117, 0.1) 0px,
          transparent 5%
        );
        animation: float 15s infinite ease-in-out;
      }

      .layer-3 {
        background-image: radial-gradient(
          circle at 70% 80%,
          rgba(255, 90, 154, 0.15) 0px,
          transparent 8%
        );
        animation: float 12s infinite ease-in-out reverse;
      }

      .layer-4 {
        background-image: radial-gradient(
          circle at 40% 60%,
          rgba(255, 90, 154, 0.2) 0px,
          transparent 6%
        );
        animation: float 18s infinite ease-in-out;
      }

      .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, var(--pink), transparent);
        filter: blur(20px);
        opacity: 0.3;
        animation: pulse 8s infinite alternate;
      }

      /* Keyframe Animations */
      @keyframes float {
        0%,
        100% {
          transform: translate(0, 0);
        }
        25% {
          transform: translate(-10px, -10px);
        }
        50% {
          transform: translate(5px, 10px);
        }
        75% {
          transform: translate(10px, -5px);
        }
      }

      @keyframes pulse {
        0% {
          transform: scale(0.8);
          opacity: 0.2;
        }
        100% {
          transform: scale(1.2);
          opacity: 0.4;
        }
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Header Section */
      .header {
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
        min-height: 40vh;
      }

      .logo-container {
        margin-bottom: 2rem;
        animation: fadeIn 1.2s ease-out forwards;
      }

      .logo {
        max-width: 380px;
        height: auto;
        margin: 4rem 0 0 0;
        animation: floatLogo 4s ease-in-out infinite;
        border-radius: 0;
        border: none;
        background: none;
        box-shadow: none;
      }

      .logo img {
        width: 100%;
        height: auto;
        border-radius: 0;
        object-fit: contain;
        filter: drop-shadow(0 5px 15px rgba(255, 45, 117, 0.3));
      }

      @keyframes floatLogo {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      /* Endorsements Page Styles */
      .endorsements-container {
        max-width: 800px;
        margin: 0 auto 100px;
        padding: 2rem;
        background: rgba(25, 47, 79, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        border: 2px solid var(--pink);
        animation: fadeIn 1s ease-out forwards;
        position: relative;
        z-index: 5;
      }

      .endorsements-header {
        text-align: center;
        margin-bottom: 2rem;
      }

      .endorsements-header h1 {
        font-size: 2.5rem;
        color: var(--light-pink);
        margin-bottom: 0.5rem;
      }

      .endorsements-header p {
        font-size: 1.2rem;
        opacity: 0.9;
      }

      .refresh-btn {
        background: linear-gradient(to right, var(--pink), var(--light-pink));
        color: var(--white);
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: var(--transition);
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(255, 45, 117, 0.4);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        margin-right: auto;
      }

      .refresh-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 45, 117, 0.6);
      }

      .refresh-btn i {
        font-size: 1rem;
      }

      /* Loader Styles */
      .loader-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem 0;
      }

      .loader {
        width: 50px;
        height: 50px;
        border: 5px solid rgba(255, 112, 155, 0.3);
        border-radius: 50%;
        border-top-color: var(--pink);
        animation: spin 1s ease-in-out infinite;
        margin-bottom: 1rem;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      .loader-text {
        font-size: 1.1rem;
        color: var(--light-pink);
      }

      /* Endorsements List Styles */
      .endorsements-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
      }

      .endorsement-item {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 1.2rem;
        text-align: center;
        transition: var(--transition);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 45, 117, 0.1);
        animation: fadeIn 0.5s ease-out forwards;
      }

      .endorsement-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(255, 45, 117, 0.2);
        border-color: rgba(255, 45, 117, 0.3);
      }

      .endorsement-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--white);
      }

      .endorsement-count {
        text-align: center;
        margin: 1.5rem 0;
        font-size: 1.1rem;
        color: var(--light-pink);
        font-weight: 600;
      }

      .error-message {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 0, 0, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 0, 0, 0.3);
        color: #ff6b6b;
        margin-top: 1rem;
      }

      /* Footer */
      footer {
        background: rgba(5, 15, 30, 0.9);
        padding: 4rem 2rem 2rem;
        text-align: center;
        position: relative;
        z-index: 5;
      }

      .footer-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .contact-info {
        margin-bottom: 2rem;
      }

      .contact-info p {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
      }

      .email-link {
        color: #ff709b;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
      }

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

      .copyright {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .endorsements-container {
          margin: 0 20px 80px;
          padding: 1.5rem;
        }

        .endorsements-header h1 {
          font-size: 2rem;
        }

        .endorsements-list {
          grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }

        /* Mobile adjustments for action buttons */
        .action-buttons {
          top: 0;
          width: 100%;
          padding: 15px;
        }

        .action-btn {
          padding: 10px 18px;
          font-size: 0.9rem;
          flex: 1;
          max-width: 150px;
        }

        .logo {
          max-width: 250px;
        }
      }

      @media (max-width: 480px) {
        .endorsements-header h1 {
          font-size: 1.8rem;
        }

        .endorsements-header p {
          font-size: 1rem;
        }

        .endorsements-list {
          grid-template-columns: 1fr;
        }

        /* Extra small device adjustments */
        .action-buttons {
          top: 10px;
          flex-wrap: wrap;
          gap: 10px;
        }

        .action-btn {
          padding: 8px 16px;
          font-size: 0.8rem;
          max-width: 140px;
          flex: 1 0 calc(50% - 10px);
        }

        .logo {
          max-width: 200px;
        }
      }

      @media (max-width: 360px) {
        .action-buttons {
          flex-direction: column;
          align-items: center;
        }

        .action-btn {
          max-width: 200px;
          width: 100%;
        }
      }
    


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

      :root {
        --navy: #001433;
        --pink: #ff709b;

        --light-pink: #ff709b;
        --white: #ffffff;
        --light-blue: #64ffda;
        --transition: all 0.4s ease;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background-color: var(--navy);
        color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* Action Buttons - UPDATED */
      .action-buttons {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(
          0,
          20,
          51,
          0.95
        ); /* navy bar with slight transparency */
        padding: 15px 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .action-btn {
        padding: 12px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        text-align: center;
        white-space: nowrap;
      }

      .donate-btn {
        background: linear-gradient(to right, var(--pink), var(--light-pink));
        color: var(--white);
      }

      .nav-btn {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.3);
      }

      .action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 112, 155, 0.6);
      }

      /* Parallax Background */
      .parallax {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
      }

      .parallax-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .layer-1 {
        background: linear-gradient(135deg, var(--navy) 0%, #061e44 100%);
      }

      .layer-2,
      .layer-3,
      .layer-4 {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
      }

      .layer-2 {
        background-image: radial-gradient(
          circle at 20% 30%,
          rgba(255, 45, 117, 0.1) 0px,
          transparent 5%
        );
        animation: float 15s infinite ease-in-out;
      }

      .layer-3 {
        background-image: radial-gradient(
          circle at 70% 80%,
          rgba(255, 90, 154, 0.15) 0px,
          transparent 8%
        );
        animation: float 12s infinite ease-in-out reverse;
      }

      .layer-4 {
        background-image: radial-gradient(
          circle at 40% 60%,
          rgba(255, 90, 154, 0.2) 0px,
          transparent 6%
        );
        animation: float 18s infinite ease-in-out;
      }

      .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, var(--pink), transparent);
        filter: blur(20px);
        opacity: 0.3;
        animation: pulse 8s infinite alternate;
      }

      /* Keyframe Animations */
      @keyframes float {
        0%,
        100% {
          transform: translate(0, 0);
        }

        25% {
          transform: translate(-10px, -10px);
        }

        50% {
          transform: translate(5px, 10px);
        }

        75% {
          transform: translate(10px, -5px);
        }
      }

      @keyframes pulse {
        0% {
          transform: scale(0.8);
          opacity: 0.2;
        }

        100% {
          transform: scale(1.2);
          opacity: 0.4;
        }
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(50px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Updated logo animation - subtle floating effect */
      @keyframes floatLogo {
        0%,
        100% {
          transform: translateY(0);
        }

        50% {
          transform: translateY(-10px);
        }
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
        position: relative;
        z-index: 10;
      }

      /* Updated Logo Container - rectangular with floating animation */
      .logo-container {
        margin-bottom: 2rem;
        animation: fadeIn 1.2s ease-out forwards;
      }

      .logo {
        /* Changed to rectangular shape */
        max-width: 380px;
        height: auto;
        margin: 0 auto 1.5rem;
        /* Added floating animation */
        animation: floatLogo 4s ease-in-out infinite;
        /* Removed circular styles */
        border-radius: 0;
        border: none;
        background: none;
        box-shadow: none;
      }

      .logo img {
        /* Maintain aspect ratio */
        width: 100%;
        height: auto;
        /* Removed circular styling */
        border-radius: 0;
        object-fit: contain;
        /* Optional: Add subtle shadow */
        filter: drop-shadow(0 5px 15px rgba(255, 45, 117, 0.3));
      }

      .headline {
        margin-bottom: 2rem;
        max-width: 800px;
      }

      .headline h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        background: linear-gradient(to right, var(--white), var(--light-pink));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: fadeIn 1.2s ease-out 0.2s forwards;
        opacity: 0;
      }

      .headline h2 {
        font-size: 1.8rem;
        font-weight: 400;
        color: var(--light-pink);
        margin-bottom: 1rem;
        animation: fadeIn 1.2s ease-out 0.4s forwards;
        opacity: 0;
      }

      .cta-button {
        display: inline-block;
        background: linear-gradient(to right, var(--pink), var(--light-pink));
        color: var(--white);
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 1.5rem;
        box-shadow: 0 5px 15px rgba(255, 45, 117, 0.4);
        transition: var(--transition);
        animation: fadeIn 1.2s ease-out 0.6s forwards;
        opacity: 0;
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 45, 117, 0.6);
      }

      .scroll-down {
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #ff709b;
        opacity: 0.8;
        animation: fadeIn 1.2s ease-out 1s forwards;
      }

      .scroll-down i {
        font-size: 1.5rem;
        margin-bottom: 5px;
        animation: floatLogo 2s ease-in-out infinite;
      }

      /* Bio Section */
      .bio {
        padding: 8rem 2rem;
        position: relative;
        z-index: 5;
        background: #192f4fcc;
        backdrop-filter: blur(10px);
      }

      .container {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        align-items: center;
      }

      .bio-content {
        flex: 1;
        min-width: 300px;
      }

      .bio-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #ff709b;
      }

      .bio-content p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        opacity: 0.9;
        line-height: 1.8;
      }

      .bio-image {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
      }

      .bio-img-placeholder {
        width: 100%;
        max-width: 400px;
        height: 500px;
        background: linear-gradient(135deg, var(--navy), #1a3b6d);
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--light-pink);
        font-size: 1.2rem;
        text-align: center;
        padding: 1.5rem;
        border: 2px solid var(--pink);
      }

      /* Values Section */
      .values {
        padding: 5rem 2rem;
        background: rgba(5, 18, 36, 0.7);
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--light-pink);
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .value-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 2rem;
        text-align: center;
        transition: var(--transition);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 45, 117, 0.1);
      }

      .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(255, 45, 117, 0.2);
        border-color: rgba(255, 45, 117, 0.3);
      }

      .value-icon {
        font-size: 2.5rem;
        color: var(--pink);
        margin-bottom: 1.5rem;
      }

      .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--white);
      }

      .value-card p {
        color: rgba(255, 255, 255, 0.8);
      }

      /* Footer */
      footer {
        background: rgba(5, 15, 30, 0.9);
        padding: 4rem 2rem 2rem;
        text-align: center;
        position: relative;
        z-index: 5;
      }

      .footer-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .social-icons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
      }

      .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--pink), var(--light-pink));
        color: var(--white);
        font-size: 1.5rem;
        transition: var(--transition);
        text-decoration: none;
      }

      .social-icons a:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(255, 45, 117, 0.4);
      }

      .contact-info {
        margin-bottom: 2rem;
      }

      .contact-info p {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
      }

      .email-link {
        color: #ff709b;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
      }

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

      .copyright {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
      }

      /* Animations for scroll-triggered elements */
      .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .headline h1 {
          font-size: 2.5rem;
        }

        .headline h2 {
          font-size: 1.5rem;
        }

        .bio {
          padding: 5rem 1.5rem;
        }

        .container {
          flex-direction: column;
        }

        .bio-image {
          order: -1;
        }

        .bio-img-placeholder {
          height: 400px;
        }

        .section-title {
          font-size: 2rem;
        }

        .logo {
          max-width: 250px;
        }

        /* Mobile adjustments for action buttons */
        .action-buttons {
          top: 0;
          width: 100%;
          padding: 15px;
        }

        .action-btn {
          padding: 10px 18px;
          font-size: 0.9rem;
          flex: 1;
          max-width: 150px;
        }
      }

      @media (max-width: 480px) {
        .headline h1 {
          font-size: 2rem;
        }

        .headline h2 {
          font-size: 1.2rem;
        }

        .bio-img-placeholder {
          height: 300px;
        }

        .logo {
          max-width: 200px;
        }

        /* Extra small device adjustments */
        .action-buttons {
          top: 10px;
          flex-wrap: wrap;
          gap: 10px;
        }

        .action-btn {
          padding: 8px 16px;
          font-size: 0.8rem;
          max-width: 140px;
          flex: 1 0 calc(50% - 10px);
        }
      }

      @media (max-width: 360px) {
        .action-buttons {
          flex-direction: column;
          align-items: center;
        }

        .action-btn {
          max-width: 200px;
          width: 100%;
        }
      }
    

/* Active state for current page */
.action-btn.active {
  background: linear-gradient(to right, var(--pink), var(--light-pink));
  color: var(--white);
  border: none;
}
