/* Existing styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Index page header */
.index-page header {
    padding: 20px;
    background: linear-gradient(to bottom, #000000, #444444);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.button-container {
    text-align: center; /* Ensure the button stays centered */
}

.rounded-button {
    background-color: #ffc451; /* Yellow color */
    color: #f9f9f9;              /* Text color */
    padding: 20px;             /* Padding for size */
    font-size: 18px;           /* Font size */
    border: none;              /* Remove border */
    border-radius: 15px;       /* Rounded corners */
    cursor: pointer;           /* Pointer cursor on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Optional shadow */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    width: 300px;              /* Set specific width */
    text-align: center;        /* Center the text inside the button */
}

.rounded-button:hover {
    background-color: #f39c12; /* Slightly darker yellow on hover */
}

.logo {
    margin-right: 20px;
    max-width: 200px;
}

.tagline {
    color: white;
    max-width: 540px;
}

main {
    flex: 1 0 auto;
    background: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.content {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border 0.3s;
    box-sizing: border-box;
}

input[type="text"]:focus {
    border-color: #f39c12;
    outline: none;
}

.theme-text {
    color: #ffc451;
}

footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer li {
    display: inline;
    margin: 0 10px;
}

footer a {
    text-decoration: none;
    color: #333;
}

/* Inner pages styles */
.inner-page header {
    height: 100px;
    background: linear-gradient(to bottom, #000000, #444444);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.inner-page .header-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.inner-page .logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.inner-page .demo {
    height: auto;
    width: auto;
    padding: 25px;
}

.inner-page .company-name {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
.inner-page .company-email {
    text-decoration: none;
}

.presentation-text {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;    
}

/* Responsive styles */
@media (max-width: 768px) {
    main {
        padding: 10px;
    }
    
    .index-page .logo {
        max-width: 150px;
    }

    .content {
        padding: 10px;
    }

    .inner-page header {
        height: 60px;
    }

    .inner-page .logo {
        height: 40px;
    }

    .inner-page .company-name {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .index-page .container {
        flex-direction: column;
    }

    .index-page .logo {
        margin-right: 0;
        margin-bottom: 10px;
        max-width: 100px;
    }
    
    footer li {
        display: block;
        margin: 10px 0;
    }

    .inner-page .company-name {
        font-size: 18px;
    }
}