/* Font Definitions */
@font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRnd/GothamRnd-Medium.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/web/Inter-Regular.woff2') format('woff2'),
         url('../fonts/Inter/web/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #F9FAFB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Shared Container Styles */
.container,
.changes-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
    
    width: 90%;
    margin: 20px auto;

}

/* Specific Styles for Each Container */
.container {
    text-align: center;
    max-width: 616px;
    margin-bottom: 49px;
    padding-bottom: 32px;
}

.container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.changes-container {
    text-align: left;
    max-width: 940px;
    margin-top: 40px;
    margin-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
    
}

.changes-container p {
    margin: 0;
    padding: 0;
}

/* Typography */
h1 {
    font-family: 'Gotham Rounded', Arial, sans-serif;
    font-size: 30px;
    color: #343B42;
    margin-bottom: 20px;
    padding-bottom: 20px
}

h1.startup-title {
    text-align: center;
    padding-bottom: 0px;
    margin-top:30px;
    margin-bottom:0px;

}

h2.startup-h2-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    color: #343B42;
    margin: 20px 0 10px;
    
}

h2 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 22px;
    color: #343B42;
    margin: 20px 0 10px;
}




h1.content-title {
    text-align: center;
    padding-bottom: 0px;
    margin-top:30px;
    margin-bottom:30px;
}

hr {
    border: none;
    height: 1px; 
    background-color: #D0D5DD; 
    margin: 20px 0; 
}

/* Links */
a {
    text-decoration: none;
    color: #007bff;
    font-size: 1em;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Logo */
.logo {
    margin-bottom: 64px;
    text-align: center;
}

.logo img {
    height: 29px;
    width: 120px;
}