    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: #333333;
        background-color: #f9f9f9;
        -webkit-text-size-adjust: 100%;
    }
    .contact-container {
        max-width: 800px;
        margin: 20px auto;
        background: #ffffff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border: 1px solid #e0e0e0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    h1 {
        color: #2c3e50;
        font-size: 1.8rem;
        line-height: 1.3;
        border-bottom: 3px solid #2c3e50;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    h2 {
        color: #2c3e50;
        font-size: 1.35rem;
        margin-top: 25px;
        margin-bottom: 12px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 5px;
    }
    h3 {
        color: #2c3e50;
        font-size: 1.25rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    p {
        margin-bottom: 14px;
        font-size: 1rem;
        text-align: left;
    }
    ul {
        padding-left: 20px;
        margin-bottom: 14px;
    }
    li {
        margin-bottom: 6px;
        font-size: 1rem;
    }
    a {
        color: #3498db;
        text-decoration: none;
        word-break: break-all;
    }
    a:hover {
        text-decoration: underline;
    }
    .contact-box {
        background: #f1f5f9;
        padding: 15px;
        border-left: 4px solid #2c3e50;
        border-radius: 4px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .alert {
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 4px;
        font-weight: bold;
    }
    .alert.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .alert.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    /* Form Custom Styling */
    .contact-form {
        margin: 30px 0;
        padding: 20px 0;
        border-top: 2px dashed #e0e0e0;
        border-bottom: 2px dashed #e0e0e0;
    }
    .input-box {
        margin-bottom: 15px;
    }
    .input-box label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: #34495e;
    }
    .input-box input[type="text"],
    .input-box input[type="email"],
    .input-box textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1rem;
        font-family: inherit;
    }
    .submitButton {
        background: #2c3e50;
        color: #fff;
        padding: 12px 25px;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.2s ease;
    }
    .submitButton:hover {
        background: #34495e;
    }

    /* Mobile Responsive Layout Fixes */
    @media (max-width: 600px) {
        body {
            padding: 0px !important; /* Removes default gaps on sides */
        }
        .contact-container {
            padding: 15px;
            margin: 0px auto !important; /* Fixes top, bottom spacing on mobile */
            border-radius: 0px; /* Aligns smoothly to edge layout width */
            border-left: none;
            border-right: none;
        }
        h1 {
            font-size: 1.5rem;
        }
        h2 {
            font-size: 1.2rem;
        }
        h3 {
            font-size: 1.1rem;
        }
        p, li {
            font-size: 0.95rem;
        }
    }