        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100dvh;
            background-color: #e1def6;

           
            main,
            .form-container {
                width: min(1100px, 96%);
                margin: 0 auto;
            }

            
            nav[aria-label="Primary"] {
                width: 100%;
                max-width: 1100px;
                margin: 18px auto;
                padding: 0 12px;
                text-align: center;
            }

            nav[aria-label="Primary"] a {
                color: #1935AA;
                text-decoration: none;
                font-weight: 600;
                margin: 0 6px;
            }

            nav[aria-label="Primary"] a:focus,
            nav[aria-label="Primary"] a:hover {
                text-decoration: underline;
                outline: none;
            }

            padding: 20px;
        }

        .profile-card {
            background: white;
            padding: 12px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 600px;
            border: 2px solid #1935AA;
            margin-bottom: 20px;
        }

        /* Form styles (applies to contact page) */
        form {
            background: transparent
        }

        form label {
            color: #222
        }

        form input[type="text"],
        form input[type="email"],
        form textarea {
            font-size: 14px
        }

        button[type="submit"] {
            background: #1935AA;
            color: #fff;
            border-radius: 8px;
            padding: 10px 16px;
            border: none;
            cursor: pointer
        }

        button[type="submit"]:focus,
        button[type="submit"]:hover {
            background: #0f2f6f
        }

        :focus {
            outline: 3px solid rgba(25, 53, 170, 0.18);
            outline-offset: 3px
        }

        /* Responsiveness */
        @media (min-width: 700px) {
            .form-container {
                padding: 26px
            }
        }

        @media (max-width: 600px) {
            body {
                align-items: flex-start;
                padding-top: 18px
            }

            nav[aria-label="Primary"] {
                text-align: left;
                padding-left: 18px
            }

            .profile-card {
                width: 95%;
                padding: 12px
            }
        }

        .profile-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #1935AA;
        }

        .profile-card h2 {
            margin-bottom: 10px;
            font-size: 22px;
            color: #333;
        }

        .profile-card p {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

        .profile-card span {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: #333;
        }

        .social-links {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .social-links a {
            text-decoration: none;
        }

        .social-links button {
            font-weight: bold;
            background-color: #1935AA;
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 25px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }

        .social-links button:hover {
            background-color: #005582;
        }

        .additional-info {
            text-align: left;
            margin-top: 20px;
            font-size: 12px;
            color: #656363;
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .info-column {
            flex: 1;
        }

        .info-column h3 {
            text-align: left;
            font-weight: bold;
            color: black;
            font-size: 16px;
        }

        .info-column ul {
            list-style-type: disc;
            margin-top: 10px;
            padding-left: 20px;
            text-align: left;
            font-size: 14px;
        }

        .info-column li {
            margin-bottom: 5px;
        }

        #hobbies-list {
            list-style-type: disc;
            margin-top: 10px;
        }

        #hobbies-list li {
            margin-bottom: 5px;
        }

        #dislikes-list {
            list-style-type: disc;
            text-align: left;
            margin-top: 10px;
        }

        #dislikes-list li {
            margin-bottom: 5px;
        }

        .current-time-section {
            font-size: 14px;
            color: #333;
            border-radius: 8px;
            background-color: #dbdde3;
            border: 2px solid #1935AA;
            margin: 20px 0px 10px 0px;
            padding: 10px;
        }

        /* Tablet screens */
        @media (max-width: 768px) {
            .profile-card {
                width: 90%;
                max-width: 500px;
                padding: 10px 16px;
            }

            .profile-card h2 {
                font-size: 18px;
            }

            .profile-card p {
                font-size: 13px;
            }

            .social-links button {
                padding: 8px 14px;
                font-size: 12px;
            }

            .additional-info {
                gap: 20px;
            }

            .info-column ul {
                font-size: 12px;
            }

            .info-column h3 {
                font-size: 14px;
            }
        }

        /* Small phones */
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .profile-card {
                width: 100%;
                padding: 10px 14px;
                border-radius: 8px;
            }

            .profile-card img {
                width: 80px;
                height: 80px;
                margin-bottom: 10px;
            }

            .profile-card h2 {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .profile-card p {
                font-size: 12px;
                margin-bottom: 15px;
            }

            .profile-card span {
                font-size: 13px;
                margin-bottom: 8px;
            }

            .social-links {
                gap: 8px;
            }

            .social-links button {
                padding: 7px 12px;
                font-size: 11px;
            }

            .additional-info {
                flex-direction: column;
                gap: 15px;
                margin-top: 15px;
            }

            .info-column {
                width: 100%;
            }

            .info-column h3 {
                font-size: 13px;
            }

            .info-column ul {
                font-size: 12px;
                padding-left: 18px;
            }

            .current-time-section {
                font-size: 12px;
                margin: 15px 0px 8px 0px;
                padding: 8px;
            }
        }